Partial Least Squares Model.Predict Core Method
Definition
Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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
- features Matrix<Double>
- A matrix containing the values for the independent variables.
Return Value
Matrix<Double>A matrix of the values of the dependent variables predicted by the regression for each row in features.
Exceptions
ArgumentNullException | 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
- features Vector<Double>
- A vector containing the values for the independent variables.
Return Value
Vector<Double>A vector containing the values of the dependent variables predicted by the regression.
Exceptions
ArgumentNullException | features is null. |
Dimension | The length of features does not match the required number of values. |