I'm trying to fit values from this model $$y(x)=ae^{−bx}+c$$ where a, b and c are 3 different parameters that I want to find with least squares. So using least squares I want to find the value of a, b and c using this formula
$$\mathrm{argmin}\sum_i \left( ae^{−bx_i}+c - y_i \right)^2$$. This leads me to 3 non linear equations after partial derivation of the previous one with respect a, b and c. Surely there are already the general formula for this case but I cannot find them. Can anybody help me?
This is an example of non-linear regression. The softwares solve this kind of problems thanks to some algoritms with iterative methods, starting from guessed values of the parameters.
http://mathworld.wolfram.com/NonlinearLeastSquaresFitting.html
I would mention a straigtforward method (not iterative, no guessed values needed) :
https://fr.scribd.com/doc/14674814/Regressions-et-equations-integrales
No need to read the explanations in French. In case of $$y(x)=a+b e^{cx}$$ see page 17, just apply the equations which are are very simple and understandable in any language.
A rough translation is added below :