how to convert arrays inside my cell array into cells?

if I have a cell array:
% code
cities =
'city1'
'city2'
'city3'
'city4'
'city5'
I want my cell to include cells that include the strings inside like that
% code
cities =
{1x1 cell}
{1x1 cell}
{1x1 cell}
{1x1 cell}
{1x1 cell}
for example in the 3rd cell inside my cell array there is
% code
{1x1 cell}% inside of it --> 'city3'
without using any kind of loop! (cause I can do it without any real problam with a loop)

2 comentarios

Cells are complicated - why make it even more complicated than it needs to be? If you want you could have cells inside of cells inside of cells inside of cells. But why?
ilona
ilona el 29 de Dic. de 2013
this is because I study Matlab in a University course and they want me to submit a structure that include cell arrays that include cell arrays... for no good reason other then showing us it is possible...

Iniciar sesión para comentar.

 Respuesta aceptada

out = num2cell(cities)

3 comentarios

ilona
ilona el 29 de Dic. de 2013
Editada: ilona el 29 de Dic. de 2013
you are a genius!!! thanks I feel so stupid right now
I never would have thought something called num2cell would work on something that is not numbers, but surprisingly it does.
ilona
ilona el 29 de Dic. de 2013
yes! it is very surprising he is a genius!

Iniciar sesión para comentar.

Más respuestas (2)

Azzi Abdelmalek
Azzi Abdelmalek el 29 de Dic. de 2013
Editada: Azzi Abdelmalek el 29 de Dic. de 2013
cities ={'city1'
'city2'
'city3'
'city4'
'city5'}
out=cellfun(@(x) {x},cities,'un',0)
out{3}
%or
out=cellfun(@cellstr,cities,'un',0)

3 comentarios

ilona
ilona el 29 de Dic. de 2013
thanks can you tell me what exactly is that you did?
I don't know how to explain, maybe you should look at
doc cellfun
ilona
ilona el 29 de Dic. de 2013
thanks!

Iniciar sesión para comentar.

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 29 de Dic. de 2013

Editada:

el 29 de Dic. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by