IDynamicParameterEstimationSolverSolve Method |
Solve the equation a*result=b in the least square sense, i.e. minimize the norm of (b-a*result).
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax void Solve(
Matrix<double> a,
Vector<double> b,
Vector<double> result
)
Parameters
- a MatrixDouble
- Matrix a.
- b VectorDouble
- Vector b.
- result VectorDouble
- Vector result, so that Norm(a*result-b) is minimized.
See Also