How I concatenate two vectors?
462 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Julen Vicente Pipaon
el 2 de Mzo. de 2021
For example
I have these vectors
x = [1 2 3 4 5]
y = [6 7 8 9 10]
And I want to concatenate them like this:
z = [ 1 2 3 4 5 6 7 8 9 10]
0 comentarios
Respuesta aceptada
Stephen23
el 2 de Mzo. de 2021
Editada: Stephen23
el 2 de Mzo. de 2021
Square brackets are the concatenation operator: you already used them to concatenate lots of scalar numbers into two vectors, now you can use them to concatenate two vectors into one vector:
x = [1,2,3,4,5];
y = [6,7,8,9,10];
z = [x,y]
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!