How to convert a column matrix 200 X 1 to a matrix 10 X 20 mat lab
3 views (last 30 days)
Show older comments
Ricardo Gutierrez
on 12 Mar 2018
Commented: Ricardo Gutierrez
on 13 Mar 2018
Good morning.
How to convert a column matrix 200 X 1 to a matrix 10 X 20
Thank you
2 Comments
Accepted Answer
James Tursa
on 12 Mar 2018
Edited: James Tursa
on 12 Mar 2018
Either
result = reshape(your_matrix,10,20)
or this
result = reshape(your_matrix,20,10).'
depending on how you want the elements ordered in the result.
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!