Click or drag to resize
Accord.NET (logo)

DistanceSquareMahalanobis Method (Double, Double, CholeskyDecomposition)

Gets the SquareMahalanobis distance between two points.

Namespace:  Accord.Math
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static double SquareMahalanobis(
	double[] x,
	double[] y,
	CholeskyDecomposition chol
)
Request Example View Source

Parameters

x
Type: SystemDouble
The first point x.
y
Type: SystemDouble
The second point y.
chol
Type: Accord.Math.DecompositionsCholeskyDecomposition

Return Value

Type: Double
The SquareMahalanobis distance between x and y.
Examples
For examples, please see SquareMahalanobis documentation page.
See Also