Effacer les filtres
Effacer les filtres

how to change the increment in for loop?

3 vues (au cours des 30 derniers jours)
Sarah A
Sarah A le 1 Août 2018
Modifié(e) : madhan ravi le 2 Août 2018
Hello,
I have this line of code in C++ and I need to know its equivalent in Matlab:
for (i =0 , i<100 , i=i+4)
?

Réponse acceptée

madhan ravi
madhan ravi le 1 Août 2018
Modifié(e) : madhan ravi le 1 Août 2018
hi, this is how you do it:
for i = 0:4:(100-1)
i
end
EXPLANATION: O IS THE STARTING POINT AND 4 IS THE INCREMENT , IT GOES ALL THE WAY UP UNTIL THE LIMIT (100-1)<=>99
  2 commentaires
Sarah A
Sarah A le 1 Août 2018
Thank you :)
madhan ravi
madhan ravi le 2 Août 2018
Modifié(e) : madhan ravi le 2 Août 2018
you're welcome

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

Community Treasure Hunt

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

Start Hunting!

Translated by