For Loop Increment Value

47 visualizzazioni (ultimi 30 giorni)
I am beginner in MATLAB. I want to write a for loop where the increment value should increase by 2.
For eg:
for i = 1:9
something
end
The value of i should be 1, 3, 5, 7, 9. Kindly help.

Risposta accettata

Geoff Hayes
Geoff Hayes il 11 Feb 2017
Just do
for k=1:2:9
% do something
end
where we have defined the step size to be two.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by