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
проверяет: является ли переменная массивом-структурой
Синтаксис
bool = isstruct(x)
Аргументы
- x
переменная Scilab'а.
- bool
логическое значение.
Описание
isstruct(x)
возвращает %t
, если
x
является массивом-структурой, и %f
- в противном случае.
Примеры
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 >> |