|  | LinearRegressionPredictedObservation Method | 
            Returns the value of the dependent variable predicted by the model for the given 
            set of predictor values.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic double PredictedObservation(
	DoubleVector x
)
Public Function PredictedObservation ( 
	x As DoubleVector
) As Double
public:
double PredictedObservation(
	DoubleVector^ x
)
member PredictedObservation : 
        x : DoubleVector -> float Parameters
- x  DoubleVector
- A set of predictor values.
Return Value
DoubleThe value of the dependent variable predicted by the model.
 Exceptions
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown if the length
            of the given vector is not equal to the number of parameters
            in the model. | 
 See Also
See Also