How to concatenate two matrices

I need to concatenate two matrices
x=[ 1 2 3 4]
y=[5 6 7 8]
such that I get
z=[1 5 2 6 3 7 4 8]

2 comentarios

Oleg Komarov
Oleg Komarov el 23 de Mzo. de 2012
Have you tried looking in the documentation for "concatenate"?
Sharon
Sharon el 23 de Mzo. de 2012
yes cat(2,x,y) gives me
ans=
1 2 3 4 5 6 7 8 and not
1 5 2 6 3 7 4 8

Iniciar sesión para comentar.

 Respuesta aceptada

Honglei Chen
Honglei Chen el 23 de Mzo. de 2012

0 votos

z = [x;y];
z = z(:).'

Más respuestas (0)

Categorías

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

Productos

Etiquetas

Preguntada:

el 23 de Mzo. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by