CurveFitter.GetConfidenceBandwidth Method

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetConfidenceBandwidth(Double) Gets the width of the confidence band around the best-fit curve at the specified point at the 95% confidence level.
GetConfidenceBandwidth(Double, Double) Gets the width of the confidence band around the best-fit curve at the specified point.

GetConfidenceBandwidth(Double)

Gets the width of the confidence band around the best-fit curve at the specified point at the 95% confidence level.
C#
public double GetConfidenceBandwidth(
	double x
)

Parameters

x  Double
The point at which to evaluate the bandwidth.

Return Value

Double
The distance from the predicted value to the upper or lower confidence band.

GetConfidenceBandwidth(Double, Double)

Gets the width of the confidence band around the best-fit curve at the specified point.
C#
public abstract double GetConfidenceBandwidth(
	double x,
	double confidenceLevel
)

Parameters

x  Double
The point at which to evaluate the bandwidth.
confidenceLevel  Double
The confidence level of the confidence band.

Return Value

Double
The distance from the predicted value to the upper or lower confidence band.

See Also