How do you reshape an array to preserve the order in each row of the original array?
조회 수: 3(최근 30일)
표시 이전 댓글
How do you reshape an array into a 1-dim column such that the first row of the original array is the first set of numbers in the column, followed by the numbers in the second row, and so on?
For example A = magic(3) should become:
B = [
8
1
6
3
5
7
4
9
2];
댓글 수: 0
채택된 답변
추가 답변(0개)
참고 항목
범주
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!