Matrix multiplication

in the numpyy basics video, you are calling the matrix multiplication as cross product while you are actually doing a dot product. my other doubt is a.dot(b) is used for dot product of two matrices a and b, is there any function for calculatng the cross product?

numpy.cross method can be used to find cross product between two matrices.