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

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)

 Respuesta aceptada

bio lim
bio lim el 7 de Jul. de 2015
Editada: bio lim el 8 de Jul. de 2015
tf = iscell(A);
if tf == 1
A =cell2mat(A)
end

2 comentarios

Steven Lord
Steven Lord el 7 de Jul. de 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.
bio lim
bio lim el 8 de Jul. de 2015
Thank you. I'll correct it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Productos

Etiquetas

Preguntada:

el 7 de Jul. de 2015

Editada:

el 8 de Jul. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by