<< iscell Data Structures isfield >>

Scilabヘルプ >> Data Structures > iscellstr

iscellstr

変数が文字列のセル配列であるかどうか調べる

呼び出し手順

bool = iscellstr(x)

パラメータ

x

Scilab 変数

bool

論理値

説明

iscellstr(x) は x が文字列のセル配列 (または空のセル配列)の場合にtrue, その他の場合に false を返します.

iscellstr(1)
iscellstr(cell())
iscellstr(cell(3))
strcell = cell(3,1);
strcell(1).entries="Scilab";
strcell(2).entries="iscellstr";
strcell(3).entries="help";
iscellstr(strcell)

参照


Report an issue
<< iscell Data Structures isfield >>