How to speed up this loops?

1 次查看(过去 30 天)
Hi,
Is there a way to speed up this?
maxN = 120;
x = -30:0.1:30;
xElements = numel(x);
u_mn = zeros(xElements, xElements);
for m = -maxN:2:maxN
for i = 1 : xElements
for j = 1 : xElements
u_mn(i, j) = sqrt((n+1)/pi) * besselj(m+1, 2*sqrt(x(i)^2 + x(j)^2)) / sqrt(x(i)^2 + x(j)^2)^(m+1) * (x(i) + 1i*x(j))^m;
end
end
end
Best regards, Alex
  4 个评论
Walter Roberson
Walter Roberson 2016-6-1
You do not store the results for each different m, and you are not summing them or anything like that, so the effect is as if you had only done the final m value.
Alex Kurek
Alex Kurek 2016-6-2
Thanky you, obviously, you are right. the middle line in the loops should look like this:
for m = -maxN:2:maxN
for i = 1 : xElements
for j = 1 : xElements
u_mn(i, j) = u_mn(i, j) + sqrt((n+1)/pi) * besselj(m+1, 2*sqrt(x(i)^2 + x(j)^2)) / sqrt(x(i)^2 + x(j)^2)^(m+1) * (x(i) + 1i*x(j))^m;
end
end
end
But still, how to speed this up? Its not working to fast right now.

请先登录,再进行评论。

采纳的回答

Ahmed Rashid
Ahmed Rashid 2016-6-2
You can create a mex function of your firstTestFunct by
xx = 1;
codegen firstTestFunct -args {xx, xx, xx, xx}
You need to do it only once. It will generate a mex file. To call the generated mex file, you just need to replace firstTestFunct with firstTestFunct_mex .

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB Algorithm Acceleration 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by