BurgAlgorithmVosExecution(IReadOnlyListDouble, Int32, Double) Method |
Uses the signal in vector x to build a model with numberOfCoefficients parameter.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (IReadOnlyList<double> Ak, double SumXsqr) Execution(
IReadOnlyList<double> x,
int numberOfCoefficients,
double regularizationFactor = 1
)
Parameters
- x IReadOnlyListDouble
- Signal for building the model.
- numberOfCoefficients Int32
- Number of coefficients of the model.
- regularizationFactor Double (Optional)
- Default 1. Values greater than 1 leads to more and more regularization of the coefficients.
Return Value
ValueTupleIReadOnlyListDouble,
DoubleThe coefficient array, and the sum of squared signal values.
See Also