Azzera filtri
Azzera filtri

Looping with unequal increment

4 visualizzazioni (ultimi 30 giorni)
Utsav
Utsav il 21 Gen 2015
Commentato: John D'Errico il 21 Gen 2015
I have x= 5,15,25,30,45,60,65,70,75,90
other parameters (in the body of loop) depends on x values above
I have to run a loop
for i=min(x) : B :max(x)
Body
endfor
What shall be the B? How to go about it?
  1 Commento
Stephen23
Stephen23 il 21 Gen 2015
Note that you should not use i or j for your loop variable names, as these are the names of the inbuilt imaginary unit .

Accedi per commentare.

Risposta accettata

Roger Stafford
Roger Stafford il 21 Gen 2015
Modificato: Roger Stafford il 21 Gen 2015
x = [5,15,25,30,45,60,65,70,75,90];
for i = 1:length(x)
% Get parameter values from x(i) and store them at i-th array positions
end
  4 Commenti
Roger Stafford
Roger Stafford il 21 Gen 2015
Good point, Stephen. I carelessly used 'i' here just because "i-th" is easier to pronounce than, say, "ix-th".
John D'Errico
John D'Errico il 21 Gen 2015
I'll admit, I like i as a loop variable. It is a throwback to my Fortran days, when i was the variable of choice for loops.

Accedi per commentare.

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