what is the index variable
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Consider the execution of the following MATLAB code:
a = 11;
b = 4;
z = 5:5:25;
for k = a:-1:b
if k > 5
z = z - 5; %
elseif k == 3
z = z - 10; %
else
z = z - 4; %
end
end %
% Which is the loop index variable?
0 Kommentare
Antworten (1)
Stephen23
am 1 Mär. 2018
Bearbeitet: Stephen23
am 1 Mär. 2018
k is the loop index variable in the code that you showed. The loop index variable is always defined after for:
for ??? = ...
^ this is where the loop index available is specified.
This is also shown in the MATLAB documentation:
0 Kommentare
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!