Quadratic Discriminant Analysis.Discriminant Functions Property
Gets the discriminant functions.
Definition
Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
public ReadOnlyCollection<QuadraticDiscriminantFunction> DiscriminantFunctions { get; }
Property Value
ReadOnlyCollection<QuadraticDiscriminantFunction>Remarks
The discriminant functions are the core of quadratic discriminant analysis. Each function corresponds to one class and computes the log posterior probability for a given observation belonging to that class. The function incorporates the class-specific mean vector, covariance matrix, and prior probability.
These functions can be used to classify new observations by evaluating each function and selecting the class with the highest score. The score includes both the Mahalanobis distance from the class centroid and terms accounting for the different covariance matrices between classes.