Click or drag to resize

BurgAlgorithm.Execute(IReadOnlyList<Double>, IVector<Double>, IVector<Double>, IVector<Double>) Method

Uses the signal in vector x to build a model with numberOfCoefficients parameter.

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

Parameters

x  IReadOnlyList<Double>
Signal for building the model.
coefficients  IVector<Double>
Vector to be filled with the coefficients of the model.
errors  IVector<Double>
Vector to be filled with the sum of forward and backward prediction error for every stage of the model.
reflectionCoefficients  IVector<Double>
Vector to be filled with the reflection coefficients.
See Also