QuickLinearRegressionGetYVarianceOfX Method |
Gets the prediction variance in dependence on x.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic double GetYVarianceOfX(
double x,
Matrix<double>? covarianceMatrix = null
)
Parameters
- x Double
- The x value.
- covarianceMatrix MatrixDouble (Optional)
- The covariance matrix. For repeated calls, get it in from GetCovarianceMatrix, otherwise, you can provide null.
Return Value
DoubleThe prediction variance at the value x.
See Also