Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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: Double
The standard error of the fit at the given input point.
See Also