|   | MultipleLinearRegressionGetStandardError Method (Double, Double, Double) | 
        
         
            Gets the standard error of the fit for a particular input vector.
            
 
    Namespace: 
   Accord.Statistics.Models.Regression.Linear
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxpublic double GetStandardError(
	double[] input,
	double mse,
	double[][] informationMatrix
)
Public Function GetStandardError ( 
	input As Double(),
	mse As Double,
	informationMatrix As Double()()
) As Double
Parameters
- input
- Type: SystemDouble
 The input vector where the standard error of the fit should be computed.
- mse
- Type: SystemDouble
 The overall regression standard error (can be computed from GetStandardError(Double, Double).
- informationMatrix
- Type: SystemDouble
 The information matrix obtained when training the model (see GetInformationMatrix).
Return Value
Type: 
DoubleThe standard error of the fit at the given input point.
 See Also
See Also