On 21/01/2014 13:38, A Khorshidi wrote:
Hi;

Is there an equivalent for the Matlab function "null" in Scilab?

Thank you
Mehran
Hi

Yes. It's called "null"

For instance:
foo = list(23,"a")
foo(2) = null()


Note that for matrices you can delete elements using empty matrices []

foo= 2*(1:3);

foo(2) = []

 foo  =

    2.    6.

--
Adrien Vogt-Schilb
PhD Student (Cired)

_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to