Adding value to a vector
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Louis Grainger
le 9 Mar 2021
Commenté : Walter Roberson
le 10 Mar 2021
Function for using a 'for' loop to add 5 differing values to the vector h.
Currently the latter input overwrites the previous.
%prompt
for count = 1:5
h = input("Enter height: ");
???
end
incrementally add 1 to the h variable?
0 commentaires
Réponse acceptée
Walter Roberson
le 10 Mar 2021
h = input("Enter height: ");
for count = 1 : 5
all_h(count) = h + count;
end
2 commentaires
Walter Roberson
le 10 Mar 2021
Yes, it gives you h and incrementally adds 1 to it like you asked for "incrementally add 1 to the h variable?" The for does 5 iterations, and each time a different value is added to h, so that satisfies "using a 'for' loop to add 5 differing values to the vector h". It also fixes the problem "Currently the latter input overwrites the previous."
Thus, my solution appears to satisfy all of the requirements you posted in the question.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!