iscell
Test whether the input is a cell array.
Syntax
Section titled “Syntax”TF = iscell(A)Description
Section titled “Description”Returns true if A is a cell array, false otherwise.
Examples
Section titled “Examples”iscell({1, 'foo'}) % 1iscell([1 2 3]) % 0