DRAWVECTOR3D Draw vector at a given position.
drawVector3d(POS, VECT)
Draws the vector VECT starting at the position POS. Both VECT and POS
are N-by-3 arrays.
drawVector3d(..., PNAME, PVALUE)
Specifies additional optional parameters that will be given to the
quiver3 function.
Example
figure; hold on;
drawVector3d([2 3 4], [1 0 0]);
drawVector3d([2 3 4], [0 1 0]);
drawVector3d([2 3 4], [0 0 1]);
view(3);
See also
vectors3d, quiver3
Package: matgeom