CurveFitter.GetPredictionBandwidth Method

Definition

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

Overload List

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

GetPredictionBandwidth(Double)

Gets the width of the prediction band around the best-fit curve at the specified point at the 95% confidence level.
C#
public double GetPredictionBandwidth(
	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 prediction band.

GetPredictionBandwidth(Double, Double)

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

Parameters

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

Return Value

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

See Also