Calculates the predicted value of the response variable for the given value of the predictor variable.

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

Syntax

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

Parameters

z
Type: CenterSpace.NMath.Core..::.DoubleVector
The predictor variable value.

Return Value

Predicted response variable value.

See Also