Click or drag to resize

DynamicParameterEstimationVariableXFillInputMatrix Method

Fills the input matrix, i.e. the left side of the linear equation.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
protected override Matrix<double> FillInputMatrix(
	IReadOnlyList<double>? x,
	IReadOnlyList<double> y,
	Matrix<double>? M
)

Parameters

x  IReadOnlyListDouble
Vector of x data.
y  IReadOnlyListDouble
Vector of y data.
M  MatrixDouble
Matrix to fill. If the dimensions are not appropriate, a new matrix is allocated and returned.

Return Value

MatrixDouble
The filled input matrix.
See Also