|
GeneralizedLinearRegressionGetStandardError Method
|
Gets the standard error of the fit for a particular input vector.
Namespace:
Accord.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public double GetStandardError(
double[] input,
double[][] informationMatrix
)
Public Function GetStandardError (
input As Double(),
informationMatrix As Double()()
) As Double
Request Example
View SourceParameters
- input
- Type: SystemDouble
The input vector where the standard error of the fit should be computed. - 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