How do I identify each element in a cell array as a string or a number?

12 Ansichten (letzte 30 Tage)
I have a cell array A = {2,8,10,'Good',15,3,21,'Morning',12,26,9,'Joe'}. I want to perform a function on each element depending on whether it is a string or a number. So far, I have tried ischar but it returns 0 for all elements.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 16 Mai 2017
out = cellfun(@ischar,A)

Weitere Antworten (1)

KL
KL am 16 Mai 2017
A = {2,8,10,'Good',15,3,21,'Morning',12,26,9,'Joe'};
q = cellfun(@(x) isnumeric(x) && numel(x)==1, A);
numA = A(q)
charA = A(~q)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by