Click or drag to resize
Accord.NET (logo)

Bhattacharyya. Distance Method (Double[] ,Double[] [] ,Double[] ,Double[] [] )

Bhattacharyya distance between two Gaussian distributions.

Namespace:  Accord.Math.Distances
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public double Distance(
	double[] meanX,
	double[][] covX,
	double[] meanY,
	double[][] covY
)
Request Example View Source

Parameters

meanX
Type:System.Double[]
Mean for the first distribution.
covX
Type:System.Double[][]
Covariance matrix for the first distribution.
meanY
Type:System.Double[]
Mean for the second distribution.
covY
Type:System.Double[][]
Covariance matrix for the second distribution.

Return Value

Type: Double
The Bhattacharyya distance between the two distributions.
See Also