I have a n-dimensional point, and would like to get all its neighborhood of distance r.
I know matlab has rangesearch() to get the neighborhood of distance r in a candidate set, but in my problem I don not have a candidate set.
Is there any matlab code can do this job?
Thanks!
I mean I want to create the subset of the points that are within this ball. For instance, I have a point (3,1) and the radius r is 5, so I want to find all the points within r of 5 to the point (3,1). The incremental would be 1 in this case, which means the possible answer could be point (4,1), (3,2), (5,1)...Am I making myself clear?
You can create a candidate set using
ndgrid
. In your 2-D example, you want a grid of points with a spacing of 1.This produces two 2-D matrices of points. To get it into the format expected by
rangesearch
:And then you can call
rangesearch
to find which of these are within the radius of your selected point:This returns a cell array (one element for each test point). In your case, you only have a single test point, so we're only interested in
idx{1}
:One more note: we could be a bit more clever about generating the candidate set. We know that the neighborhood will be bounded by a hypercube centered around the test point, and so we could start by using the points in the hypercube as the candidate set:
And then we can construct a candidate set from this range:
In an arbitrary number of dimensions: