Partial Least Squares Model.Predict Core Method
Definition
Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Predict | Predicts the value of the dependent variable based on the specified values of the features. |
| Predict | Predicts the value of the dependent variable based on the specified values of the features. |
PredictCore(Matrix<Double>)
Predicts the value of the dependent variable based on
the specified values of the features.
protected virtual Matrix<double> PredictCore(
Matrix<double> features
)Parameters
Return Value
Matrix<Double>A matrix of the values of the dependent variables predicted by the regression for each row in features.
Exceptions
| Argument | features is null. |
| Dimension | The number of columns of features does not match the required number of values. |
PredictCore(Vector<Double>)
Predicts the value of the dependent variable based on
the specified values of the features.
public Vector<double> PredictCore(
Vector<double> features
)Parameters
Return Value
Vector<Double>A vector containing the values of the dependent variables predicted by the regression.
Exceptions
| Argument | features is null. |
| Dimension | The length of features does not match the required number of values. |