DynamicParameterEstimationCalculateCrossPredictionError(IReadOnlyListDouble, IReadOnlyListDouble) Method |
With the already evalulated parameters (!), calculates the mean error for another piece of data. Please not
that both vectors must have a length of at least _startingPoint+1, since the first _startingPoint samples are used for the history.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public virtual double CalculateCrossPredictionError(
IReadOnlyList<double> x,
IReadOnlyList<double> y
)
Parameters
- x IReadOnlyListDouble
- Vector of x data.
- y IReadOnlyListDouble
- Vector of y data.
Return Value
DoubleThe mean error between y prediction values and actual y values.
See Also