Click or drag to resize

QuickLinearRegressionGetConfidenceBand(Double, Double, MatrixDouble) Method

Gets the confidence band of the prediction.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public (double yLower, double yMean, double yUpper) GetConfidenceBand(
	double x,
	double confidenceLevel,
	Matrix<double>? covarianceMatrix = null
)

Parameters

x  Double
The x value.
confidenceLevel  Double
The confidence level.
covarianceMatrix  MatrixDouble  (Optional)
The covariance matrix. For repeated calls, get it in from GetCovarianceMatrix, otherwise, you can provide null.

Return Value

ValueTupleDouble, Double, Double
The lower value of the confidence band, the mean value of the prediction, and the upper value of the confidence band.
See Also