CurveFitter<T>.GetConfidenceBandwidth Method

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0

Overload List

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

GetConfidenceBandwidth(T)

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

Parameters

x  T
The point at which to evaluate the bandwidth.

Return Value

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

GetConfidenceBandwidth(T, Double)

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

Parameters

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

Return Value

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

See Also