Click or drag to resize

DynamicParameterEstimationWithChooseableBins Constructor

Initializes a new instance of the DynamicParameterEstimationWithChooseableBins class. This will regress a 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 x bins. They are the lags for the x values and range from 0 to ∞. The yb0..ybm are called the y bins. They are the lags for the y values and range from 1 to ∞.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.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 designates a constant background; a value of 1 a linear background.
See Also