Click or drag to resize

BurgAlgorithmExecute(IReadOnlyListDouble, IVectorDouble, IVectorDouble, IVectorDouble) Method

Uses the signal in x to build a model with as many parameters as there is space in coefficients.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void Execute(
	IReadOnlyList<double> x,
	IVector<double> coefficients,
	IVector<double> errors,
	IVector<double> reflectionCoefficients
)

Parameters

x  IReadOnlyListDouble
Signal for building the model.
coefficients  IVectorDouble
Vector to be filled with the coefficients of the model.
errors  IVectorDouble
Vector to be filled with the sum of forward and backward prediction error for every stage of the model.
reflectionCoefficients  IVectorDouble
Vector to be filled with the reflection coefficients.
See Also