Scilab 5.4.0
Please note that the recommended version of Scilab is 6.1.0. This page might be outdated.
See the recommended documentation of this function
null
delete an element in a list
Calling Sequence
l(i)=null()
Description
Deletion of objects inside a list.
Examples
l=list(1,2,3); l(2)=null() // get list(1,3)
Comments
Add a comment:
Please login to comment this page.