nested for loop keeping i constant through all, until end of j's
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, I am running a nested for loop
for i
for j
end
end
and I would like i=1 while j=1, 2, 3, 4, 5
i=2 j=1, 2, 3, 4, 5
i=3 j=1, 2, 3, 4, 5
...
i=5 j=1, 2, 3, 4, 5
is this an if or a while loop?
Thanks for any help!
2 Kommentare
Thorsten
am 17 Nov. 2015
Bearbeitet: Thorsten
am 17 Nov. 2015
i and j are very common loop counters, and they result in code that is readable and concise. I think it's ok to use them and use 1i for the complex unit, as advised by Matlab's help page:
For speed and improved robustness in complex arithmetic, use 1i and 1j instead of i and j.
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!