|
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
Syntaxpublic double Distance(
double[] meanX,
double[][] covX,
double[] meanY,
double[][] covY
)
Public Function Distance (
meanX As Double(),
covX As Double()(),
meanY As Double(),
covY As Double()()
) As Double
Request Example
View SourceParameters
- 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:
DoubleThe Bhattacharyya distance between the two distributions.
See Also