How to figure out if an array is ordinary or cell?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
In my code, variable (A) can be either an ordinary array or cell array. How can I do following
If (A) is an ordinary array then do nothing If (A) is a cell array then cell2mat(A)
0 Kommentare
Akzeptierte Antwort
bio lim
am 7 Jul. 2015
Bearbeitet: bio lim
am 8 Jul. 2015
tf = iscell(A);
if tf == 1
A =cell2mat(A)
end
2 Kommentare
Steven Lord
am 7 Jul. 2015
Two comments:
- You don't need to use == 1 here.
- You need to return an output argument from CELL2MAT, otherwise you're making a matrix from the cell array then throwing that matrix away.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!