Hi,
I am trying to access value of a cell
>> a={'1,65,4,5'}
a =
1×1 cell array
{'1,65,4,5'}
>> a(2)
Index exceeds the number of array elements (1).
>> a{2}
Index exceeds array bounds.
Thanks
Jinang

3 comentarios

Stephen23
Stephen23 el 1 de Dic. de 2019
Editada: Stephen23 el 1 de Dic. de 2019
Look at what MATLAB is telling you:
a =
1×1 cell array
How many cells does your cell array have? (hint: one)
What do you expect to occur when you try to access a non-existent cell?
Disregarding your buggy indexing, what is the expected output?:
  • the character ','
  • the characters '65'
  • the number 65
  • something else...
jinang patel
jinang patel el 1 de Dic. de 2019
Hi Stephen,
expected output - number 65. The problem is that I have data from a file which has a={'1,65,4,5'}, I understand removing the quotes will solve it but I cant change the file that generates the data. It is a single cell, is there a way to convert it to 1x4 array?
Stephan
Stephan el 1 de Dic. de 2019
See my edited answer

Iniciar sesión para comentar.

 Respuesta aceptada

Stephan
Stephan el 1 de Dic. de 2019
Editada: Stephan el 1 de Dic. de 2019

1 voto

Edited because of the comments:
a = {'1,65,4,5'}
b = str2num(a{:})
b(2)

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 1 de Dic. de 2019

Editada:

el 1 de Dic. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by