Replace nested loops with a matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohammad Ezzad Hamdan
am 9 Mai 2021
Kommentiert: Mohammad Ezzad Hamdan
am 9 Mai 2021
I have to optimize this code but i am not sure how to turn it into a matrix.
for i=2:nhx-1
for j=2:nhy-1
U(i,j)= U(i,j)-dt*(Pc(i+1,j)-Pc(i-1,j))/(2*hx);
end
end
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Dyuman Joshi
am 9 Mai 2021
Unew = zeros(nhx, nhy);
Unew(2:nhx-1, 2:nhy-1)=U(2:nhx-1, 2:nhy-1)-dt.*(P(3:nhx,2:nhy-1)-P(1:nhx-2,2:nhy-1))./(2*hx);
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!