Click or drag to resize

QuickQuadraticRegressionGetYVarianceOfX Method

Gets the prediction variance of y at the specified x value.

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

Parameters

x  Double
The x value.
covarianceMatrix  MatrixDouble  (Optional)
The covariance matrix. For repeated calls, obtain it once via GetCovarianceMatrix; otherwise, pass .

Return Value

Double
The prediction variance at the value x.
See Also