Exercise: Expressing a constant vector

9.1.5.8. Exercise: Expressing a constant vector#

Using Kinetics Toolkit’s conventions, create a NumPy array that corresponds to the following time-invarying vector:

\[ \vec{v} = (1, 2, 0) \]
Hide code cell content
import numpy as np

v = np.array([[1.,2.,0.,0.]])

v
array([[1., 2., 0., 0.]])