How to figure out if an array is ordinary or cell?

1 visualizzazione (ultimi 30 giorni)
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)

Risposta accettata

bio lim
bio lim il 7 Lug 2015
Modificato: bio lim il 8 Lug 2015
tf = iscell(A);
if tf == 1
A =cell2mat(A)
end
  2 Commenti
Steven Lord
Steven Lord il 7 Lug 2015
Two comments:
  1. You don't need to use == 1 here.
  2. You need to return an output argument from CELL2MAT, otherwise you're making a matrix from the cell array then throwing that matrix away.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by