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!