0
Plot a single vector.

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


Scilab 20-09-19, 3:37 p.m. Ironmaniac
0

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

10-12-19, 4:17 p.m. sunilshetye


Log-in to answer to this question.