|  | LinearRegressionPredictedObservations Method | 
            Returns the values of the dependent variable predicted by the model for the given 
            sets of predictor values.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleVector PredictedObservations(
	DoubleMatrix A
)
Public Function PredictedObservations ( 
	A As DoubleMatrix
) As DoubleVector
public:
DoubleVector^ PredictedObservations(
	DoubleMatrix^ A
)
member PredictedObservations : 
        A : DoubleMatrix -> DoubleVector Parameters
- A  DoubleMatrix
- A matrix of predictor values. Each row of A is a set
            of predictor values.
Return Value
DoubleVectorA 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
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown if the number
            of columns in the given matrix is not equal to the number of parameters
            in the model. | 
 See Also
See Also