Click or drag to resize

DynamicParameterEstimationEstimateParameterByBurgsAlgorithm Method

Estimates the parameters using Burg's algorithm.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void EstimateParameterByBurgsAlgorithm(
	IReadOnlyList<double> data,
	int m,
	out double xms
)

Parameters

data  IReadOnlyListDouble
Signal data.
m  Int32
Number of coefficients to estimate.
xms  Double
On return, gets the mean square of the signal.
Exceptions
ExceptionCondition
ArithmeticExceptionThrown if an internal consistency check fails (should not happen).
See Also