DynamicParameterEstimationFillInputMatrix Method |
Fills the input matrix, i.e. the left side of the linear equation.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax protected virtual 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 stored in the member _inputMatrix.
Return Value
MatrixDouble[Missing <returns> documentation for "M:Altaxo.Calc.Regression.DynamicParameterEstimation.FillInputMatrix(System.Collections.Generic.IReadOnlyList{System.Double},System.Collections.Generic.IReadOnlyList{System.Double},Altaxo.Calc.LinearAlgebra.Matrix{System.Double})"]
See Also