How to add elements to the end of an array?
257 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Angela Albrecht
le 27 Oct 2016
Réponse apportée : Santiago Alcantara
le 10 Fév 2022
I have two arrays:
alpha = [ 1 2 3 4 5]; beta = [ 6 7 8 9 10 11 12];
I'd like to add beta to the end of alpha so they form gamma
gamma = [1 2 3 4 5 6 7 8 9 10 11 12];
How would I go about doing this?
3 commentaires
Image Analyst
le 27 Jan 2018
Punnag, you can put "Answers" down below in the "Answers" section rather than up here. Though, I doubt there's a need to post a duplicate of the answer down there that was already posted 4 months ago.
Réponse acceptée
John Wirzburger
le 27 Oct 2016
gamma = [alpha beta];
5 commentaires
James Tursa
le 5 Fév 2018
@ Charles. This comment does not appear to be sufficiently related to the original Question. Suggest you delete this comment and open up a new Question about your specific problem.
Plus de réponses (2)
Santiago Alcantara
le 10 Fév 2022
Also you can enlarge it the of two. In others words:
you have
alpha = [ 1 2 3 4 5]
beta = [ 6 7 8 9 10 11 12]
alpha(6:12)=beta
0 commentaires
Mebin A Abraham
le 14 Avr 2020
how can i add elements in an array..... suppose A=[ 1 2 3 4]....i want to get sum of the numbers..ie.1+2+3+4=10.........for that what is the function
Voir également
Catégories
En savoir plus sur Matrices and Arrays 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!