making two columns from a row vector

조회 수: 2 (최근 30일)
cgo
cgo 2018년 7월 12일
댓글: Walter Roberson 2018년 7월 12일
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

채택된 답변

Walter Roberson
Walter Roberson 2018년 7월 12일
output = reshape(YourVector, 2, []) .' ;
  댓글 수: 2
cgo
cgo 2018년 7월 12일
What is the . for? That is what I miss. Thanks
Walter Roberson
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 CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by