[Scilab-users] {EXT} Plotting graphs

Dang Ngoc Chan, Christophe Christophe.Dang at sidel.com
Thu Nov 10 17:26:03 CET 2016


To answer more precisely to your question:

> If x is a vector and y a matrix plot(x,y) plots each columns of y versus vector x.

If M is the matrix, and the X column is the n-th one, then:

----------

X = M(:, n); // select the n-th column

Y = M;

Y(:, n) = []; // remove the n-th column from the matrix

plot(X, Y)

----------

Regards

--
Christophe Dang Ngoc Chan
Mechanical calculation engineer
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error), please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.


More information about the users mailing list