IDynamicParameterEstimationSolver.Solve 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.3261.0 (4.8.3261.0)
Syntaxvoid Solve(
Matrix<double> a,
Vector<double> b,
Vector<double> result
)
Parameters
- a Matrix<Double>
- Matrix a.
- b Vector<Double>
- Vector b.
- result Vector<Double>
- Vector result, so that Norm(a*result-b) is minimized.
See Also