Click or drag to resize

DynamicParameterEstimationWithChooseableBins Constructor

Initializes a new instance of the DynamicParameterEstimationWithChooseableBins class. This will regress an linear equation y_i = a_0*x_i-xb0 + a_1*x_i-xb1 + ... + a_n*x_i-xbn + b_0*y_i-yb0 + b_1*y_i-yb1 + ... + b_m*y_i-ybm. The xb0 .. xbn are called the xBins. They are the lags for the x-Values and range from 0 .. Infinity. the yb0 .. ybn are called the yBins. They are the lags of the y-Values and range from 1 .. Infinity.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public DynamicParameterEstimationWithChooseableBins(
	int[] xBins,
	int[] yBins,
	int backgroundOrder
)

Parameters

xBins  Int32
The x bins.
yBins  Int32
The y bins.
backgroundOrder  Int32
The background order. Use -1 if you want to fit without background. A value of 0 already designates a constant background, a value of 1 a linear background.
See Also