How to convert a column matrix 200 X 1 to a matrix 10 X 20 mat lab
1 回表示 (過去 30 日間)
古いコメントを表示
Ricardo Gutierrez
2018 年 3 月 12 日
コメント済み: Ricardo Gutierrez
2018 年 3 月 13 日
Good morning.
How to convert a column matrix 200 X 1 to a matrix 10 X 20
Thank you
採用された回答
James Tursa
2018 年 3 月 12 日
編集済み: James Tursa
2018 年 3 月 12 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!