Scilab Function
Last update : 18/05/2014

iscellstr - Checks if all the cell components are strings

Calling Sequence

y=iscellstr(c)

Parameters

Description

Given a cell c,the function iscellstr returns 1 if all the cell components are strings else returns 0.

Examples

// example 1:
c=makecell([1,3],'foo1','foo2','foo3');
y=iscellstr(c)

// example 2:
c=makecell([1,3],'foo1',5,'foo3');
y=iscellstr(c)

See Also

cell,  makecell,  

Author

Farid Belahcene