How I concatenate two vectors?

454 vues (au cours des 30 derniers jours)
Julen Vicente Pipaon
Julen Vicente Pipaon le 2 Mar 2021
Modifié(e) : Stephen23 le 2 Mar 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]

Réponse acceptée

Stephen23
Stephen23 le 2 Mar 2021
Modifié(e) : Stephen23 le 2 Mar 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]
z = 1×10
1 2 3 4 5 6 7 8 9 10

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by