Quadratic Discriminant Function.Evaluate Method
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
Overload List
Evaluate( | Evaluates the discriminant function at the specified point. |
Evaluate( | Evaluates the discriminant function at the specified point. |
Evaluate(Vector<Double>)
public double Evaluate(
Vector<double> features
)
Parameters
Return Value
DoubleThe value of the discriminant function at x.
Remarks
This method computes the value of the quadratic discriminant function for a given feature vector. It transforms the input features using the inverse square root of the covariance matrix and the centroid, then calculates the norm squared of the transformed features, adjusts for the log determinant of the covariance matrix, and adds the log prior probability.
Use this method when you need to evaluate the discriminant function for a single observation.
Evaluate(Matrix<Double>, Vector<Double>)
public Vector<double> Evaluate(
Matrix<double> features,
Vector<double>? scores = null
)
Parameters
- features Matrix<Double>
- The point at which to evaluate the function.
- scores Vector<Double> (Optional)
- Optional. The vector to store the result in.
Return Value
Vector<Double>A vector containing the value of the discriminant function for each row in features.
Remarks
This method computes the value of the quadratic discriminant function for each row in a matrix of feature vectors. It transforms the input features using the inverse square root of the covariance matrix and the centroid, then calculates the norm squared of the transformed features for each row, adjusts for the log determinant of the covariance matrix, and adds the log prior probability.
Use this method when you need to evaluate the discriminant function for multiple observations at once.