convert matrix and horizontally catenate

4 次查看(过去 30 天)
Hi,
I need to convert this matrix A to
A=[1 2 3 4 5 6
7 8 9 10 11 12
13 14 15 16 17 18
19 20 21 22 23 24];
A = 1 2 3 4 5 6 7 8 9 10...24;
How can I perform this in matlab? Any help is appreciated.
Thanks.

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-7-16
编辑:Azzi Abdelmalek 2014-7-16
A=A'
A=A(:)'
Or
reshape(A',1,[])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by