Click or drag to resize

BurgAlgorithmVos Class

A faster algorithm than BurgAlgorithm, if the number of coefficients is less than 1/3 the length of the signal. This algorithm is based on a paper by Koen Vos, 2013.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.RegressionBurgAlgorithmVos

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class BurgAlgorithmVos

The BurgAlgorithmVos type exposes the following members.

Constructors
 NameDescription
Public methodBurgAlgorithmVosInitializes a new instance of the BurgAlgorithmVos class
Top
Properties
 NameDescription
Public propertyCoefficients Gets the coefficients that were calculated during the last run of the algorithm.
Public propertyMeanSquareSignal Gets the mean square of the signal values.
Public propertyNumberOfCoefficients Gets the number of coefficients that were used for the last run of the algorithm.
Public propertyReflectionCoefficients Gets the reflection coefficients that were calculated during the last run of the algorithm.
Public propertyRMSSignal Gets the root mean square (RMS) of the signal values.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodExecute Uses the signal in x to build a model with numberOfCoefficients parameters.
Public methodStatic memberExecution(IReadOnlyListDouble, IVectorDouble, Double) Uses the signal in x to build a model with as many parameters as there is space in coefficients.
Public methodStatic memberExecution(IReadOnlyListDouble, Int32, Double) Uses the signal in x to build a model with numberOfCoefficients parameters.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetFrequencyResponse Calculates the frequency response for a given frequency.
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetMeanPredictionErrorNonrecursivelyBackward Determines the mean backward prediction error using the model stored in this instance.
Public methodGetMeanPredictionErrorNonrecursivelyForward Determines the mean forward prediction error using the model stored in this instance.
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodPredictRecursivelyBackward(IVectorDouble, Int32) Predicts values towards the start of the vector. The predicted values are then used to predict further values.
Public methodPredictRecursivelyBackward(IVectorDouble, Int32, Int32) Predicts values towards the start of the vector. The predicted values are then used to predict further values.
Public methodPredictRecursivelyForward(IVectorDouble, Int32) Predicts values towards the end of the vector. The predicted values are then used to predict further values.
Public methodPredictRecursivelyForward(IVectorDouble, Int32, Int32) Predicts values towards the end of the vector. The predicted values are then used to predict further values.
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Fields
 NameDescription
Protected field_Ak Prediction coefficients, see eq. (28) in [1]. Note that for technical reasons _Ak[0] is always 1 and the calculated coefficients start with _Ak[1].
Protected field_Ak_previousSwapping array for _Ak.
Protected field_cArray containing the autocorrelation values, see eq. (26) in [1].
Protected field_gPrediction coefficients, see eq. (22) in [1].
Protected field_g_previousSwapping array for _g.
Protected field_kReflection coefficients.
Protected field_rTemporary array used by the algorithm.
Top
Remarks

Literature:

[1] Koen Vos, "A Fast Implementation of Burg's method", August 2013, Creative Commons.

See Also