Reshape a vector to a matrix
41 ビュー (過去 30 日間)
古いコメントを表示
Hello, I have the following doubt imagining that I have the vector
x=[1 2 3 4 5 6 7 8 9 10]
how can I do to reorganize it as follows
A=[1 2 3 4 5
6 7 8 9 10]
Since as we know reshape organizes as follows.
A=[1 3 5 7 9
2 4 6 8 10]
Thank u so much in advance.
1 件のコメント
Star Strider
2021 年 8 月 18 日
This seems to be homework.
In any event, just use the reshape function.
.
採用された回答
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
