Click or drag to resize

LinearRegressionPredictedObservations Method

Returns the values of the dependent variable predicted by the model for the given sets of predictor values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleVector PredictedObservations(
	DoubleMatrix A
)

Parameters

A  DoubleMatrix
A matrix of predictor values. Each row of A is a set of predictor values.

Return Value

DoubleVector
A vector of predicted responses. The ith element of the vector is the predicted response for the set of predictor values in the ith row of the input matrix A.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns in the given matrix is not equal to the number of parameters in the model.
See Also