How change two columns with 5 rows to a single row?

조회 수: 2 (최근 30일)
Bajdar Nouredine
Bajdar Nouredine 2024년 7월 26일
편집: David Goodmanson 2024년 7월 26일
x= [2 4 6 8 10 ];
y= [20 40 60 80 100];
% I want to reprsent them in a single row like that z= 2 20 4 40 . . .

채택된 답변

David Goodmanson
David Goodmanson 2024년 7월 26일
편집: David Goodmanson 2024년 7월 26일
Hi Bajdar,
xy = [x; y];
z = xy(:)'
i.e. concatenate x and y vertically, read that matrix out columnwise, then take the transpose. If x or y could be complex, then
z = xy(:).'
(transpose, not complex conjugate transpose) is necessary.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Other Formats에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by