Contents:
cross_mat()
Return matrix representation of the cross product of the given vector
v (np.ndarray) – 3-vector that will be assembled into the matrix.
cross_matrix – Matrix representing the cross product. np.cross(a,b) is equivalent to cross_mat(a)@b
np.ndarray