Microscopy Image Browser 2.91
MIB
Loading...
Searching...
No Matches
vectorCross3d.m File Reference

VECTORCROSS3D Vector cross product faster than inbuilt MATLAB cross. More...

Functions

function c = vectorCross3d (a, b)
 VECTORCROSS3D Vector cross product faster than inbuilt MATLAB cross.
 

Detailed Description

VECTORCROSS3D Vector cross product faster than inbuilt MATLAB cross.

Function Documentation

◆ vectorCross3d()

function c = vectorCross3d ( a,
b )

VECTORCROSS3D Vector cross product faster than inbuilt MATLAB cross.

C = vectorCross3d(A, B) returns the cross product of the 3D vectors A and B, that is: C = A x B A and B must be N-by-3 element vectors. If either A or B is a 1-by-3 row vector, the result C will have the size of the other input and will be the concatenation of each row's cross product.

Example v1 = [2 0 0]; v2 = [0 3 0]; vectorCross3d(v1, v2) ans = 0 0 6

Class support for inputs A,B
float: double, single
See also
DOT.

References max.