<< CL_covDraw Utilities CL_dMult >>

CelestLab >> Utilities > CL_cross

CL_cross

Cross product of column vectors

Calling Sequence

[w] = CL_cross(u,v)

Description

Parameters

u:

Matrix (considered as a set of column vectors) (PxN or Px1, P >= 3)

v:

Matrix (considered as a set of column vectors) (PxN or Px1, P >= 3)

w:

Matrix (cross products of column vectors): w(:,j) = u(:,j)^v(:,j) (PxN, P >= 3)

See also

Authors

Examples

u = [ [1;0;0] , [0;1;0] ] ;
v = [ [0;1;0] , [0;0;1] ] ;
w = CL_cross(u,v);
<< CL_covDraw Utilities CL_dMult >>