First page Back Continue Last page Overview Graphics

Example with Cross Product

>>> x = np.array([0,0,1])

>>> y = np.array([0,1,0])

>>> np.cross(x,y)

array([-1, 0, 0])

>>> np.cross(y,x)

array([1, 0, 0])