Scilab 5.3.3
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
Check if a variable is a structure array
Calling Sequence
bool = isstruct(x)
Arguments
- x
Scilab variable
- bool
A boolean
Description
isstruct(x)
returns true if x is a struct array
and false otherwise.
Examples
isstruct(1) isstruct(cell()) isstruct(struct("name","Scilab", "version", getversion())) info.name="Scilab"; info.function="isstruct"; info.module="help"; isstruct(info)
Author
- V.C.
<< isfield | Data Structures | list >> |