QuickLinearRegressionGetConfidenceBand(Double, Double, MatrixDouble) Method |
Gets the confidence band of the prediction.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic (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 from GetCovarianceMatrix; otherwise, you can provide .
Return Value
ValueTupleDouble,
Double,
DoubleThe lower value of the confidence band, the mean value of the prediction, and the upper value of the confidence band.
See Also