Is there a Numpy built-in function that returns a cross product matrix?
That is:
>>> cross_product_matrix_function([1, 2, 3])
array([[ 0, -3,  2],
       [ 3,  0, -1],
       [-2,  1,  0]])
Is there a Numpy built-in function that returns a cross product matrix?
That is:
>>> cross_product_matrix_function([1, 2, 3])
array([[ 0, -3,  2],
       [ 3,  0, -1],
       [-2,  1,  0]])