MATLAB: How to convert a column matrix 200 X 1 to a matrix 10 X 20 mat lab

MATLABmatricesmatrixmatrix array

Good morning.
How to convert a column matrix 200 X 1 to a matrix 10 X 20
Thank you

Best Answer

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.