making two columns from a row vector
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a row vector of size 1 x 600;
I want to create a two column vector such that elements 1 and 2 of the row vector are in row 1; elements 3 and 4 are in row 2; and so on.
Please help
댓글 수: 0
채택된 답변
Walter Roberson
2018년 7월 12일
output = reshape(YourVector, 2, []) .' ;
댓글 수: 2
Walter Roberson
2018년 7월 12일
The ' operator is "conjugate transpose", equivalent to
transpose(conj(DATA))
The .' operator is transpose without taking the complex conjugate, identical to calling transpose() without conj()
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!