How to append vectors end to end???
564 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ihtisham Khan
le 3 Mai 2018
Commenté : Ihtisham Khan
le 3 Mai 2018
Hi, I have two vectors and wanted to join these vectors end to end. The output i wanted is,
[c]=
1 2 3 4 5 6 7 8 9 10 11 12 13 14
but when i run the code,
e.g.
[a] = [1 2 3 4 5 6 7] ;
[b] = [8 9 10 11 12 13 14];
[c] = [a ; b];
output::
[c] =
1 2 3 4 5 6 7
8 9 10 11 12 13 14
How would I do this? Thanks for your help.
3 commentaires
Stephen23
le 3 Mai 2018
Basic MATLAB concepts, such as how to create and concatenate arrays, are covered in the introductory tutorials (which are highly recommended for all beginners):
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!