transposing the contents of the cell

3 次查看(过去 30 天)
hi, I have a 3x1 cell array that contains the following cells:
[1x2 double]
[1x2 double]
[1x2 double]
how can I transpose the contents of the cell to the main cell array is as follows:
[2x1 double]
[2x1 double]
[2x1 double]
any help would be appreciated!

采纳的回答

Lucas García
Lucas García 2011-9-11
Let C be your cell. You can do the following:
C = cellfun(@transpose,C,'un',0);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by