Click or drag to resize

BurgAlgorithmVosExecution(IReadOnlyListDouble, IVectorDouble, Double) 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 static double Execution(
	IReadOnlyList<double> x,
	IVector<double> coefficients,
	double regularizationFactor = 1
)

Parameters

x  IReadOnlyListDouble
Signal for building the model.
coefficients  IVectorDouble
Vector of coefficients to be filled.
regularizationFactor  Double  (Optional)
Default is 1. Values greater than 1 lead to increasing regularization of the coefficients.

Return Value

Double
The sum of squared signal values.
See Also