1
vote
1answer
70 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
0
votes
1answer
64 views

Matching points in 2 D space

I have 2 matrices A and B both of size Rows X 2 where Rows = m , n for A and B respectively. These m and n denote the points in the euclidean space. The task I wish to perform is to match the ...
1
vote
1answer
109 views

Fast computation of nearest neighbour bhattacharya coefficients between sets of gaussian random variables

I have two sets A and B, each containing 10^4-10^5 random variables (RV), with each RV following a normal distribution. I want to find, for each RV in A, the nearest neighbour in B, based on the ...
1
vote
2answers
935 views

Finding nearest neighbor between 2 sets of dated points

I have 2 sets of points, set1 and set2. Both sets of points have a data associated with the point. Points in set1 are "ephemeral", and only exist on the given date. Points in set2 are "permanent", ...
1
vote
2answers
487 views

How to calculate distance when we have sparse dataset in K nearest neighbour

I am implementing K nearest neighbour algorithm for a very sparse data. I want to calculate the distance between a test instance and each sample in the training set, but I am confused. Because most ...
1
vote
3answers
692 views

Does anyone know of a free Neighborhood Database?

Working on a SaaS application in PHP/Zend and want to provide users with the ability to search by neighborhood as well radius from zip code. We've been trying to find a decent Neighborhood DB of the ...
1
vote
3answers
787 views

Nearest Neighbours using Quaternions

Given a quaternion value, I would like to find its nearest neighbour in a set of quaternions. To do this, I clearly need a way to compare the "distance" between two quaternions. What distance ...