QuadraticDiscriminantFunction.Evaluate Method

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload List

Evaluate(Vector<Double>) Evaluates the discriminant function at the specified point.
Evaluate(Matrix<Double>, Vector<Double>) Evaluates the discriminant function at the specified point.

Evaluate(Vector<Double>)

Evaluates the discriminant function at the specified point.
C#
public double Evaluate(
	Vector<double> features
)

Parameters

features  Vector<Double>
The point at which to evaluate the function.

Return Value

Double
The 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>)

Evaluates the discriminant function at the specified point.
C#
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.

See Also