hi i have 1x10 cell,each cell contains 1x2 cell,therefore totally i have 20 cells,i need all these 20 cells to be displayed in single array as 1x20 double ,how to code this in matlab sir,help plz

1 次查看(过去 30 天)
i need to do this in loop because i have 20 1x10cells,thanks in advance

采纳的回答

Stephen23
Stephen23 2015-10-1
编辑:Stephen23 2015-10-1
You do not need a loop:
X = {[1,2],[3,4],[4,5]}
[X{:}]
And if those nested arrays really are cell arrays, then simply do this:
Y = {{1,2},{3,4},{4,5}};
cell2mat([Y{:}])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by