Click or drag to resize
Accord.NET (logo)

VPTreeFromData Method (Double, IDistance, Boolean)

Creates a new vantage-point tree from the given points.

Namespace:  Accord.Collections
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public static VPTree FromData(
	double[][] points,
	IDistance distance,
	bool inPlace = false
)
Request Example View Source

Parameters

points
Type: SystemDouble
The points to be added to the tree.
distance
Type: Accord.Math.DistancesIDistance
The distance function to use.
inPlace (Optional)
Type: SystemBoolean
Whether to perform operations in place, altering the original array of points instead of creating an extra copy.

Return Value

Type: VPTree
A VPTree populated with the given data points.
See Also