Borrar filtros
Borrar filtros

How to use exist for a cell?

51 visualizaciones (últimos 30 días)
osminbas
osminbas el 12 de Abr. de 2012
Hello,
I have a cell with string elements and I am trying to check if they exist as variables:
A={'B0','B01','B04'}
for i=1:3
if exist(A(i,1),'var')==1
...
This does not work so what do I do? Thx!

Respuesta aceptada

Walter Roberson
Walter Roberson el 12 de Abr. de 2012
if exist(A{i,1},'var')
Notice the {} instead of ()
  3 comentarios
Shamir Alavi
Shamir Alavi el 7 de Dic. de 2012
It doesn't work for me! Here's the code:
>> h = {1,2;3,4};
>> exist('h','var')
ans =
1
>> exist('h{1}','var')
ans =
0
>> exist('h{1,1}','var')
ans =
0
Am I making any mistake? If not, is there any other way to check existence of different elements in a cell array?
Thanks
Matt J
Matt J el 7 de Dic. de 2012
Editada: Matt J el 7 de Dic. de 2012
You have several errors. First, notice that Walter doesn't enclose the first argument to exist() in quotes. Secondly, your h{i,j} data are not relevant examples because they are not strings.

Iniciar sesión para comentar.

Más respuestas (1)

RNTL
RNTL el 12 de Abr. de 2012
ismember(A,who)
  2 comentarios
osminbas
osminbas el 12 de Abr. de 2012
Actually, I am really trying to use exist and check the elements one by one in a loop so ismember(A,who) would not work for me.
Jan
Jan el 7 de Dic. de 2012
@osminbas: Please take the time to think twice. This method would help to avoid the loop or at least compare all elements of the cell string h in a very compact form.

Iniciar sesión para comentar.

Categorías

Más información sobre Entering Commands en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by