Reshape to column vector
조회 수: 2 (최근 30일)
이전 댓글 표시
I have
a =
1 2 3 4
5 6 7 8
9 10 11 12
I need to covert it to a column vector keeping the input order as follows,
b =
1
2
3
4
.
.
12
But when you use reshape funtion
b = [reshape(a,[12,1])]
b =
1
5
9
2
6
10
3
7
11
4
8
12
Can anyone help me on this?
댓글 수: 0
답변 (1개)
Star Strider
2021년 10월 9일
Transpose ‘a’ before calling reshape —
a = [1 2 3 4
5 6 7 8
9 10 11 12];
b = reshape(a.',[],1)
.
댓글 수: 2
Star Strider
2021년 10월 9일
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!