DynamicParameterEstimationExtrapolate Method |
Extrapolates y-values until the end of the vector by using linear prediction.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static DynamicParameterEstimation Extrapolate(
IReadOnlyList<double> yTraining,
IVector<double> yPredValues,
int len,
int yOrder
)
Parameters
- yTraining IReadOnlyListDouble
- Input vector of y values used to calculated the prediction coefficients.
Input/output vector of y values to extrapolate.
The fields beginning from 0 to len-1 must contain valid values used for initialization of the extrapolation.
At the end of the procedure, the upper end (len .. yPredValues.Count-1 contain the
extrapolated data.
- yPredValues IVectorDouble
[Missing <param name="yPredValues"/> documentation for "M:Altaxo.Calc.Regression.DynamicParameterEstimation.Extrapolate(System.Collections.Generic.IReadOnlyList{System.Double},Altaxo.Calc.LinearAlgebra.IVector{System.Double},System.Int32,System.Int32)"]
- len Int32
- Number of valid input data points for extrapolation (not for the training data!).
- yOrder Int32
- Number of history samples used for prediction. Must be greater or equal to 1.
Return Value
DynamicParameterEstimation[Missing <returns> documentation for "M:Altaxo.Calc.Regression.DynamicParameterEstimation.Extrapolate(System.Collections.Generic.IReadOnlyList{System.Double},Altaxo.Calc.LinearAlgebra.IVector{System.Double},System.Int32,System.Int32)"]
See Also