Use the calculated model to predict the response value for each of of the given predictor values.

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

Syntax

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

Parameters

X
Type: CenterSpace.NMath.Core..::.DoubleMatrix
Matrix of predictor values. Each row contains a value for the predictor variable.

Return Value

Matrix of predicted response values. Each row of the returned matrix contains the predicted value for the corresponding row of the input response variable matrix PredictorMatrix

See Also