Scilab 6.0.0
Scilab Help >> Data Structures > null
null
delete an element in a list
Syntax
l(i)=null()
Description
Deletion of objects inside a list.
Examples
l=list(1,"foo",3); l(2)=null() // get list(1,3)
Comments
Add a comment:
Please login to comment this page.