how to make a 3x3 matrix a 9x1 matrix?

6 ビュー (過去 30 日間)
vedesh Mohit
vedesh Mohit 2018 年 4 月 3 日
編集済み: Birdman 2018 年 4 月 3 日
Hey i have a matrix x=[ 1 4 7; 2 5 8 ;3 6 9]; how do I make this matrix become x=[ 1;2;3;4;5;6;7;8;9];

採用された回答

Birdman
Birdman 2018 年 4 月 3 日
編集済み: Birdman 2018 年 4 月 3 日
reshape(x,9,1)
or
x(:) % this creates a column vector out of a matrix

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by