Click or drag to resize

Altaxo.Calc.Regression Namespace

[Missing <summary> documentation for "N:Altaxo.Calc.Regression"]

Classes
 ClassDescription
Public classBurgAlgorithm Implements Burg's algorithm with real numbers.
Public classBurgAlgorithmComplex Implements Burg's algorithm with complex numbers.
Public classBurgAlgorithmVos 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.
Public classDynamicParameterEstimation Algorithms to estimate the parameters of a dynamic difference equation.
Public classDynamicParameterEstimationCombXY Dynamic parameter estimation with comb like spaced x and y input.
Public classDynamicParameterEstimationVariableX Dynamic parameter estimation with variable spaced x input.
Public classDynamicParameterEstimationWithChooseableBins 
Public classLinearFitBySvd Performs a linear fit to a given function base using singular value decomposition.
Public classNLFit Functions for nonlinear minimization.
Public classNonLinearFit2 Levenberg - Marquard methods adapted to C# from C++ sources from Manolis Lourakis (see below).
Public classQuickLinearRegression Class for doing a quick and dirty regression of order 1 only returning intercept and slope. Can not handle too big or too input values.
Public classQuickQuadraticRegression Class for doing a quick and dirty regression of order 2 only returning the parameters A0, A1 and A2 as regression parameters. Can not handle too big or too small input values.
Public classQuickStatistics Uses the method of running sums to calculate mean, sample standard deviation, and standard deviation of a data set.
Public classSavitzkyGolay SavitzkyGolay implements the calculation of the Savitzky-Golay filter coefficients and their application to smoth data, and to calculate derivatives.
Public classSavitzkyGolayParameters Stores the set of parameters necessary to calculate Savitzky-Golay coefficients.
Interfaces
 InterfaceDescription
Public interfaceIDynamicParameterEstimationSolver 
Delegates
 DelegateDescription
Public delegateFunctionBaseEvaluator Evaluates a function base of the variable x. The function base is returned in array functionbase.
Public delegateNLFitLMFunction User-supplied subroutine which calculates the functions to minimize. Calculates numberOfYs functions dependent on numberOfParameter parameters and returns the calculated y values in array ys. The value of info should not be changed unless the user wants to terminate execution of LevenbergMarquardtFit. In this case set iflag to a negative integer.
Public delegateNonLinearFit2FitFunction 
Public delegateNonLinearFit2JacobianFunction