<< iscell Structures isfield >>

Aide de Scilab >> Structures > iscellstr

iscellstr

Vérifie si une variable est une cell de chaînes de caractères

Séquence d'appel

bool = iscellstr(x)

Paramètres

x

Variable Scilab

bool

Un booléen

Description

iscellstr(x) retourne vrai si x est une cell de chaînes de caractères et faux sinon.

Exemples

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)

Voir aussi


Report an issue
<< iscell Structures isfield >>