Click or drag to resize

DynamicParameterEstimationCalculateNumberOfData Method

Calculates the number of points that can be used on the right side of the linear equation (i.e. the number of rows of the equation). With the same length of x and y, the number of usable data points decreases when more x or y parameters are evaluated, since more samples are needed for the history and those samples cannot be used on the right side of the equation.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
protected virtual int CalculateNumberOfData(
	IReadOnlyList<double>? x,
	IReadOnlyList<double> y
)

Parameters

x  IReadOnlyListDouble
Vector of x data.
y  IReadOnlyListDouble
Vector of y data.

Return Value

Int32
The number of data points (rows) that can be used.
See Also