<< isvector Elementary Functions modulo >>

Scilab Help >> Elementary Functions > lstsize

lstsize

list, tlist, mlist numbers of entries

Calling Sequence

n=lstsize(l)

Arguments

l

a list, tlist or mlist object

n

an integer, the number of entries

Description

lstsize(l) returns the number of entries for list, list, mlist objects. This function is more efficient than the size function and works similarly with all list types while size is overloaded for mlist objects.

Examples

lstsize(list(1,'aqsdf'))
x=ssrand(3,2,4);
[ny,nu]=size(x)
lstsize(x)

See Also


Report an issue
<< isvector Elementary Functions modulo >>