

Plot a single vector.
How can I plot a single vector,r= 4i + 3j + 2k(say), in the cartesian coordinate system?
Scilab


A vector can be plotted using param3d()
function. e.g.
x = [0,4];
y = [0,3];
z = [0,2];
param3d(x,y,z);
line = gce();
// change line properties as required
Login to add comment