which for loop will completed first ??

1 Ansicht (letzte 30 Tage)
Anil Kumar
Anil Kumar am 9 Dez. 2018
Kommentiert: Stephen23 am 9 Dez. 2018
for i=1:5
for j=1:4
v(i,j)=w*v(i,j)+c1*rand()*(pbest(i,j)-x(i,j))+c2*rand()*(gbest(1,j)-x(i,j));
end
end
how this loops will work.
thanks in advance
  2 Kommentare
madhan ravi
madhan ravi am 9 Dez. 2018
a=rand(3);
m=size(a,1);
n=size(a,2);
b=zeros(size(a,1),size(a,2));
for i=1:m
for j=1:n
b(i,j)=a(i,j) % this will make you understand the working of nested for loops
end
end
Stephen23
Stephen23 am 9 Dez. 2018
"which for loop will completed first ??"
Of any nested loops, the innermost one will finish first.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 9 Dez. 2018
The inner j loop will finish first, for any given i. The j loop will execute its 4 iterations 5 times - one iteration of 4 times for every one of the 5 i values.
If the loops got very large (tens of thousands of iterations), you might notice a speed up if you switched the i and j loop because MATLAB is "column major" so it goes down rows (left most index) first before jumping over to the next column. So it would be faster if the inner most loop variable were the left most index.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by