I'm trying to fit $f(x) = A \exp(Bx) + C \exp(Dx) + E \exp(F x) $ to data. I can finish off the fitting using Levenberg-Marquardt, but I'd like to find a quick way to calculate initial parameters.
Can the method detailed by JJacquelin be expanded from two to three terms? Would it need SSS and SSSS? Thank you :)





A quick and dirty way which works.
If $B,D,F$ are known, the problem reduces to a linear regression. So, make a three dimension grid and for each triplet compute the sum of squares until you find a minimum. For the best triplet, recompute $A,C,D$ and start the nonlinear regression.
Because of symmetry, you must not compute all points. Suppose that you start the search at $B=V$ and you want to perform $N$ evaluations using a step size of $DV$, then the structure of the loops would be something like