| 
            
              MultivariateLinearRegressionGetStandardErrors Method 
             | 
          
        
         
            Gets the standard error for each coefficient.
            
 
    Namespace: 
   Accord.Statistics.Models.Regression.Linear
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic double[][] GetStandardErrors(
	double[] mse,
	double[][] informationMatrix
)
Public Function GetStandardErrors ( 
	mse As Double(),
	informationMatrix As Double()()
) As Double()()
 Request Example
		View SourceParameters
- 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: 
Double
See Also