New array from several arrays

1 次查看(过去 30 天)
Hi,
I have the three arrays:
[a(1) a(2) a(3)]
[b(1) b(2) b(3)]
[c(1) c(2) c(3)]
and I want to make a new array as following:
[a(1) b(1) c(1) a(2) b(2) c(2) a(3) b(3) c(3)]
I greatly appreciate any help or any idea
Thanks

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-3-21
编辑:Azzi Abdelmalek 2015-3-21
out=[a;b;c];
out=out(:)'

更多回答(2 个)

Stephen23
Stephen23 2015-3-21
编辑:Stephen23 2015-3-21
>> A = [1,2,3];
>> B = [4,5,6];
>> C = [7,8,9];
>> D = reshape([A;B;C],1,[])
D =
1 4 7 2 5 8 3 6 9

Ismaeel
Ismaeel 2015-3-21
Thank you so much. They were helpful, both of them.

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by