Click or drag to resize

DynamicParameterEstimationCalculatePredictionError(VectorDouble) Method

Calculates the mean prediction error, i.e. Sqrt(Sum((y-yprediced)²)).

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual double CalculatePredictionError(
	Vector<double>? predictedOutput
)

Parameters

predictedOutput  VectorDouble
The resultant predicted output. If null, a temporary vector is allocated for calculation.

Return Value

Double
The mean prediction error.i.e. Sqrt(Sum((y-yprediced)²)/N).
See Also