Clear Filters
Clear Filters

change the structure of cell

1 view (last 30 days)
ha ha
ha ha on 12 Apr 2018
Edited: ha ha on 12 Apr 2018
A : 3x1 cell class
A={cell_1;
cell_2;
cell_3;}
A={[3x1 double];[5x1 double];[1x1 double]}
A={[11;22;33]; [1;2;3;4;5]; [999999]}
How can I change cell A to be cell A_new as follow:
A_new : 1x3 cell class
A_new={cell_1, cell_2, cell_3, }
A_new={[3x1 double],[5x1 double],[1x1 double]}
A_new={[11;22;33], [1;2;3;4;5], [999999]}

Accepted Answer

Stephen23
Stephen23 on 12 Apr 2018

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!