QuadraticDiscriminantFunction.CovarianceMatrix Property

Gets the covariance matrix associated with this function.

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
C#
public Matrix<double> CovarianceMatrix { get; }

Property Value

Matrix<Double>

Remarks

The covariance matrix represents the spread and correlation of features within this group. It captures how the features vary together for observations belonging to this group.

You can use the covariance matrix to assess the uncertainty in classifications by examining the spread of features for a given group. The covariance structure also helps in understanding which features tend to vary together in the group, providing insights for feature selection in subsequent analyses.

See Also