public abstract class FloatNearestNeighbours extends Object implements NearestNeighbours<float[],float[],IntFloatPair>
| Constructor and Description |
|---|
FloatNearestNeighbours() |
| Modifier and Type | Method and Description |
|---|---|
static float |
distanceFunc(float[] qu,
float[] pnt)
Static method to find the sum-squared distance between
a query vector and a point.
|
static void |
distanceFunc(float[] qu,
float[][] pnts,
float[] dsq_out)
Static method to find the sum-squared distance between
a query vector and each of a set of points.
|
static float |
distanceFunc(FloatFVComparator distance,
float[] qu,
float[] pnt)
Static method to find a distance between
a query vector and a point.
|
static void |
distanceFunc(FloatFVComparator distance,
float[] qu,
float[][] pnts,
float[] dsq_out)
Static method to find a distance between
a query vector and each of a set of points.
|
abstract int |
numDimensions()
Get the number of dimensions of each vector in the dataset
|
public FloatNearestNeighbours()
public static void distanceFunc(float[] qu, float[][] pnts, float[] dsq_out)
qu - The query vector.pnts - The points to compare against.dsq_out - The resultant distances.public static float distanceFunc(float[] qu, float[] pnt)
qu - The query vector.pnt - The point to compare against.public static float distanceFunc(FloatFVComparator distance, float[] qu, float[] pnt)
distance - the distance measurequ - The query vector.pnt - The point to compare against.public static void distanceFunc(FloatFVComparator distance, float[] qu, float[][] pnts, float[] dsq_out)
distance - the distance measurequ - The query vector.pnts - The points to compare against.dsq_out - The resultant distances.public abstract int numDimensions()