Click or drag to resize

IDynamicParameterEstimationSolverSolve Method

Solves the equation a * result = b in the least-square sense, i.e. minimizes the norm of (b - a * result).

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
void Solve(
	Matrix<double> a,
	Vector<double> b,
	Vector<double> result
)

Parameters

a  MatrixDouble
Matrix a.
b  VectorDouble
Vector b.
result  VectorDouble
Vector result, such that ||a * result - b|| is minimized.
See Also