MatLab While loop indexing?

5 vues (au cours des 30 derniers jours)
YOUNGJUN Park
YOUNGJUN Park le 14 Oct 2020
Commenté : YOUNGJUN Park le 14 Oct 2020
I am learning while loop in MATLAB.
I got an assignment where I have to figure out how many times loop was executed.
Is there any way to do this?
my code is following:
Balance=0;
while Balance < 1000000
Balance= 10000+Balance*(1+0.06)
end
This assignment require user to figure out how long will it take to reach 1million dolloar when its initial balance is 10000 and the annual compound interest was given as 6%.
I am not even sure if I created the right loop but trying to figure out how many times loop would execute if that loop is executed.
  1 commentaire
James Tursa
James Tursa le 14 Oct 2020
Is the interest compounded annually or monthly? Your code would indicate annually.

Connectez-vous pour commenter.

Réponse acceptée

James Tursa
James Tursa le 14 Oct 2020
Add a counter to your loop. Initialize the counter to 0 and add 1 to it within the loop. E.g.,
counter = 0;
% other stuff
while (whatever condition)
% other stuff
counter = counter + 1;
end
  1 commentaire
YOUNGJUN Park
YOUNGJUN Park le 14 Oct 2020
Thanks !

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by