Effacer les filtres
Effacer les filtres

Count number of points around points in a list

4 vues (au cours des 30 derniers jours)
Luis Isaac
Luis Isaac le 28 Mar 2019
Dear;
I have two list of points defined by to array vectors xyz1 and xyz2, both of them are Nx3, where N is the number of points (different in xyz1 and xyz2) and 3 are the cartesian coordinates.
I would like to count the number of xyz2 particles in a neighborhood of each xyz1 particles, where the neighborhood is defined as a sphere of radio "h" around each element in xyz1.
I code the following:
Countxyz=zeros(size(xyz1,1),1);
h2=h*h;
for i=1:size(xyz1,1)
Dstxyz=sum((xyz2-repnat(xyz1(i,:),1)).^2,2);
Countxyz(i)=sum(Dstxyz<=h2);
end
As the number of elements in both xyz1 and xyz2 are large (more tham 10000 or 1000000) the code takes time to calculate the counts.
Is there any way to vectorize the main for loop and speed up the code?
Thanks in advance,

Réponse acceptée

KSSV
KSSV le 28 Mar 2019
I feel the following functions will be help ful for you. Read about knnsearch, rangesearch.

Plus de réponses (1)

Luis Isaac
Luis Isaac le 28 Mar 2019
Yes, thanks a lot
"rangesearch" is the right function to use, although must be complemented with a conversion form cell to matrix because "rangesearch" gives a cell of vectors with the indexes of the nearest neighborhood
A possible solution should be:
cellIdxNearest=rangesearch(xyz2,xyz1,h,'Distance','euclidean'); % Cell of vectors with the index of nesarest
celllenght=cellfun(@lenth,cellIdxNearest,'uni',false); % Cell of integers each of them the number of elements of each vector in de cell cellIdxNearest
Countxyz=cell2mat(celllenght); % Convert cell to matrix, in this case vector

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by