| IPLS1CalcPredict(DoubleMatrix) Method |
Use the calculated model to predict the response values, ResponseVector
, from the given set of predictor variables.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public abstract DoubleVector Predict(
DoubleMatrix Z
)
Public MustOverride Function Predict (
Z As DoubleMatrix
) As DoubleVector
public:
virtual DoubleVector^ Predict(
DoubleMatrix^ Z
) abstract
abstract Predict :
Z : DoubleMatrix -> DoubleVector
Parameters
- Z DoubleMatrix
- Matrix of predictor variable values, one per row.
Return Value
DoubleVectorPredicted response variable values. The ith element is the predicted
response for predictor variable in the ith row of
Z.
See Also