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

2 次查看(过去 30 天)
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 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by