How can I optimize this code?
11 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Thermodynamics & Statistical Physics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!