crossCross products
C = cross(A, B)A and B should be numeric arrays.A and B are vectors, they both should have exactly 3 elements. C is the cross product of A and B.A and B are matrices or multi-dimensional arrays, they should have the same sizes, and the first non-singleton dimension should have 3 elements. C contains cross products of vectors of A and B along the first non-singleton dimension.C = cross(A, B, k)C = cross(A,B), except that cross products are computed from vectors of A and B taken from the k-th dimension, and that the k-th dimensions of A and B should have exactly 3 elements.