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 double Predict(
	DoubleVector x
)
Visual Basic (Declaration)
Public Function Predict ( _
	x As DoubleVector _
) As Double
Visual C++
public:
double Predict(
	DoubleVector^ x
)

Parameters

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

Return Value

The predicted response variable value.

See Also