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.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxvoid 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