convert matrix to vector in a loop

3 ビュー (過去 30 日間)
Elahe Karimi
Elahe Karimi 2019 年 6 月 5 日
コメント済み: Elahe Karimi 2019 年 6 月 5 日
Hello
I have a matrix with (144x10). I want to put 4 rows in the first row together as a vector and move it to a new matrix.(rows,40) Then put 4 next rows together as vectors and put them in a new matrix until the end in the same way.
a matrix:
(row1,40)
(row1,40)
(row1,40)
(row1,40)
(row1,40)
(row1,40)
.....
.....
please help me
thank you

採用された回答

Dennis
Dennis 2019 年 6 月 5 日
編集済み: Dennis 2019 年 6 月 5 日
Please check if this works for you:
A=randi(100,144,10); %matrix of size (144,10)
B=reshape(A',40,36);
B=B';
  1 件のコメント
Elahe Karimi
Elahe Karimi 2019 年 6 月 5 日
thank you so much.it works.

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

その他の回答 (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