Each cell in the cell array contains a matrix, e.g.,
Suppose the cell array is
[8x1] cell
Inside which their are some matrix like
[6x2] double
[7x2] double
[6x2] double
[7x2] double
[6x2] double
[7x2] double
[6x2] double
[7x2] double
Now i want to transpose the cell array into
[1x8] cell
How to do it?

 Réponse acceptée

SUSHMA MB
SUSHMA MB le 2 Déc 2015

4 votes

reshape command works for this example well. For poly as the name of the cell array,
polyre = reshape(poly,[1 8]);

Plus de réponses (1)

the cyclist
the cyclist le 2 Déc 2015
Modifié(e) : the cyclist le 2 Déc 2015

16 votes

To transpose the cell array itself:
C_transposed = C';
To transpose the matrices inside:
C_inside = cellfun(@transpose,C,'UniformOutput',false)

4 commentaires

SUSHMA MB
SUSHMA MB le 2 Déc 2015
Thank you for the answer. I tried the above one but its not working.
Murari Mandal
Murari Mandal le 4 Nov 2016
It is working just fine.
Luke Aucoin
Luke Aucoin le 24 Sep 2020
I used C_transposed = C' to transform a row array of character strings into a column array of the same strings. Thanks @the cyclist.
Yuri
Yuri le 14 Sep 2023
Thanks a lot!

Connectez-vous pour commenter.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by