Use the calculated model to predict the response values, ResponseVector, from the given set of predictor variables.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public override DoubleVector Predict(
	DoubleMatrix Z
)
Visual Basic (Declaration)
Public Overrides Function Predict ( _
	Z As DoubleMatrix _
) As DoubleVector
Visual C++
public:
virtual DoubleVector^ Predict(
	DoubleMatrix^ Z
) override

Parameters

Z
Type: CenterSpace.NMath.Core..::.DoubleMatrix
Matrix of predictor variable values, one per row.

Return Value

Predicted response variable values. The ith element is the predicted response for predictor variable in the ith row of Z.

See Also