Click or drag to resize

BurgAlgorithmPredictRecursivelyBackward(IVectorDouble, Int32, Int32) Method

Predict values towards the start of the vector. The predicted values are then used to predict more values. See remarks for details.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void PredictRecursivelyBackward(
	IVector<double> x,
	int lastPoint,
	int count
)

Parameters

x  IVectorDouble
Signal which holds at least NumberOfCoefficients valid points (the signal window to start the prediction with) from index (lastPoint+1) to (lastPoint+NumberOfCoefficents). The predicted values are then stored in the first part of this vector from indices (lastPoint-count+1) to (lastPoint).
lastPoint  Int32
Index of the last point to predict.
count  Int32
Number of points to predict.
Remarks
The algorithm uses a signal window of NumberOfCoefficients signal points after the lastPoint to predict the value at lastPoint. Then the window is shifted by one towards the start of the vecctor, hence including the predicted value, and the point at lastPoint-1 is predicted. The procedure is repeated until count points are predicted.
See Also