How to increase the speed of this code?

1 次查看(过去 30 天)
Hi,
I write a script to check the lattice point the (vector pts), which is in the sphere centered at certain points(x and y) which is on the top side of the lattice. But this code works so slow which contains a lot of for loop and square root operation. Can you help me to fix this problem?
if true
% vt = 0.4;
pts1 = []
for i = 1:1:length(x)
for j = 1:1:length(pts)
dist = (x(i)-pts(j,1))^2+(y(i)-pts(j,2))^2+(pts(j,3))^2;
%distance from lattice to the seed
if dist <= vt^2
a = [pts(j,1) pts(j,2) -pts(j,3)];
disp(a);
pts1 = [pts1;a];
end
end
end
end

回答(1 个)

Kuifeng
Kuifeng 2016-4-9
% 1. use vectors instead of the for loop to calculate distance, example
dist = sqrt(x.-xCenter).^2.+(y.-yCenter).^2.+(z.-zCenter).^2);
% 2. use 'find' for criteria <=vt^2. make some changes to the two lines
find(dist <=vt^2).

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by