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.
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to