change array into matrix
12 views (last 30 days)
Show older comments
How to write a 4 values in rectangular grid a=[8 4 6 2]
it will become
a=
8 4
6 2
0 Comments
Accepted Answer
Mischa Kim
on 1 Feb 2014
Edited: Mischa Kim
on 1 Feb 2014
b = reshape(a,2,2)
3 Comments
Mischa Kim
on 1 Feb 2014
Is this another question or are you confirming that the command does what you need it to do?
More Answers (0)
See Also
Categories
Find more on Matrices and Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!