Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isstruct
checks if a variable is a structure array
Syntax
bool = isstruct(x)
Arguments
- x
a Scilab variable.
- bool
a boolean.
Description
isstruct(x)
returns %t
if
x
is a struct array and %f
otherwise.
Examples
isstruct(1) isstruct(cell()) isstruct(struct("name","Scilab", "version", getversion())) info.name="Scilab"; info.function="isstruct"; info.module="help"; isstruct(info)
Report an issue | ||
<< isfield | Data Structures | list >> |