Concatenate together two cell arrays

1 visualización (últimos 30 días)
Fabio Taccaliti
Fabio Taccaliti el 2 de Jul. de 2022
Comentada: Fabio Taccaliti el 3 de Jul. de 2022
Hello,
I have two 102 x 1 cell (respectively CC and DD), each of them with all 32 x 4 doubles.
I would like to create another cell BB (102 x 1) that includes all the elements of the cell CC and DD, I mean it should contain 64 x 4 doubles (the first part 32 x 2 from CC and the second part 32 x 2 from DD).
How can I do it?
Thanks

Respuesta aceptada

Walter Roberson
Walter Roberson el 2 de Jul. de 2022
BB = cellfun(@(c,d) [c;d], CC, DD, 'uniform', 0);
  3 comentarios
Walter Roberson
Walter Roberson el 2 de Jul. de 2022
cell2mat(BB)
Fabio Taccaliti
Fabio Taccaliti el 3 de Jul. de 2022
thankss

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by