Can anyone explain for loop ? And nested loops.

1 visualización (últimos 30 días)
Maulik Brahmane
Maulik Brahmane el 18 de Feb. de 2020
Comentada: Stephen23 el 18 de Feb. de 2020
%Please explain me the for loop , and nested loops.
for

Respuestas (1)

John D'Errico
John D'Errico el 18 de Feb. de 2020
Editada: John D'Errico el 18 de Feb. de 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.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by