Can anyone explain for loop ? And nested loops.

조회 수: 1 (최근 30일)
Maulik Brahmane
Maulik Brahmane 2020년 2월 18일
댓글: Stephen23 2020년 2월 18일
%Please explain me the for loop , and nested loops.
for

답변 (1개)

John D'Errico
John D'Errico 2020년 2월 18일
편집: John D'Errico 2020년 2월 18일
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.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by