checks if a variable is a cell array
bool = iscell(x)
a Scilab variable.
a boolean.
iscell(x) returns %tif x is a cell array and %f otherwise.
iscell(x)
%t
x
%f
iscell(1) iscell(cell()) c = cell(1,2); c(1).entries="Scilab"; c(2).entries=datenum(); iscell(c)