Use the calculated model to predict the response value, y, from the given value of the predictor variable.

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

Syntax

C#
public abstract DoubleVector Predict(
	DoubleVector z
)
Visual Basic (Declaration)
Public MustOverride Function Predict ( _
	z As DoubleVector _
) As DoubleVector
Visual C++
public:
virtual DoubleVector^ Predict(
	DoubleVector^ z
) abstract

Parameters

z
Type: CenterSpace.NMath.Core..::.DoubleVector
Predictor variable value.

Return Value

Predicted dependent value.

See Also