combining three cell array of different sizes

1 visualización (últimos 30 días)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan el 7 de Jul. de 2015
Editada: Stephen23 el 7 de Jul. de 2015
I have three cell arrays:
a = {'ball' ; 'cake' ; 'ice'}
b = {'home'}
c = {'car'}
I know if I use d =[a , b, c] will get the error.
how can I combine these arrays. The output should be another array so that it will be easy to write into excel.
Thanks a lot.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 7 de Jul. de 2015
d = cell(3);
d(:,1) = a;
d(1,2:end) = [b,c];

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by