Can anyone explain for loop ? And nested loops.

1 vue (au cours des 30 derniers jours)
Maulik Brahmane
Maulik Brahmane le 18 Fév 2020
Commenté : Stephen23 le 18 Fév 2020
%Please explain me the for loop , and nested loops.
for

Réponses (1)

John D'Errico
John D'Errico le 18 Fév 2020
Modifié(e) : John D'Errico le 18 Fév 2020
How can we do better than to suggest you read the help for for? It has examples in there.
help for
doc for
A simple for loop:
N = 5;
X = zeros(1,N); % preallocate X to the final size
for n = 1:N
X(n) = n.^2 + 1;
end
Nested loops:
N = 12;
A = zeros(N,N); % preallocation
for R = 1:N
for C = 1:N
A(R,C) = 1/(R+C-1);
end
end
The loop variable will increment on each pass through the loop, with everything between the for and the corresponding end statement being executed in its normal sequence.
Don't grow arrays dynamically, as that will be the cause of extrememly slow code. Then you will be anxiously asking later how to speed up your code. So use preallocation for arrays and vectors that will be otherwise grown to their final size.
There are many other ways to use loops, both for and while loops. READ THE HELP! The help was put there for you to use it, and was written for you to read.

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