New array from several arrays

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

1 comentario

Konstantinos Sofos
Konstantinos Sofos el 21 de Mzo. de 2015
Are all of your matrices of the same dimensions?

Iniciar sesión para comentar.

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 21 de Mzo. de 2015
Editada: Azzi Abdelmalek el 21 de Mzo. de 2015
out=[a;b;c];
out=out(:)'

Más respuestas (2)

Stephen23
Stephen23 el 21 de Mzo. de 2015
Editada: Stephen23 el 21 de Mzo. de 2015
>> 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 el 21 de Mzo. de 2015

0 votos

Thank you so much. They were helpful, both of them.

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Preguntada:

el 21 de Mzo. de 2015

Respondida:

el 21 de Mzo. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by