How can I optimize this code?

13 Ansichten (letzte 30 Tage)
Igor Arkhandeev
Igor Arkhandeev am 4 Feb. 2021
Good day to all! I have a snippet of code that is called very often. Since it is described through for loops, it is too slow. Are there any techniques to improve this part?
j = 1;
k = 1;
for l1 = 0:a
for m1 = -l1:l1
l2 = abs(m1);
if(l2 <= b)
for l2 = abs(m1):b
n = l2 * (l2 + 1) + m1 + 1;
d(j) = d(j) + G(k) * t(n);
k = k + 1;
end
else
k = k + 1;
end
if (l2 <= c)
k = k + c - l2;
end
j = j + 1;
end
end

Antworten (0)

Kategorien

Mehr zu Thermodynamics & Statistical Physics 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!

Translated by