Clear Filters
Clear Filters

transform 1x12 cell to 3x4 cell

1 view (last 30 days)
Hi! I have a cell like this:
A = {'5','11','69','85','114','169','188','196','250','258','267','295'};
I want to transform it like this:
A = {'5','11','69','85';'114','169','188','196';'250','258','267','295'};

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 23 Jun 2023
A = {'5','11','69','85','114','169','188','196','250','258','267','295'}
A = 1×12 cell array
{'5'} {'11'} {'69'} {'85'} {'114'} {'169'} {'188'} {'196'} {'250'} {'258'} {'267'} {'295'}
A = reshape(A,4,[])'
A = 3×4 cell array
{'5' } {'11' } {'69' } {'85' } {'114'} {'169'} {'188'} {'196'} {'250'} {'258'} {'267'} {'295'}

More Answers (0)

Categories

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

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!