フィルターのクリア

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

2 ビュー (過去 30 日間)
Ricardo Gutierrez
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
  2 件のコメント
per isakson
per isakson 2018 年 3 月 12 日
See: reshape
Ricardo Gutierrez
Ricardo Gutierrez 2018 年 3 月 13 日
Thank you very much !!!

サインインしてコメントする。

採用された回答

James Tursa
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 ExchangeMatrices and Arrays についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by