Function Description ******************** Name: SUM_EXPON_2 Function: f(x) = a0*(1.0 - exp(-x/a1)) + a2*(1.0 - exp(-x/a3)) Parameters: a0 a1 a2 a3 Notes ***** Fit to a sum of two exponential decay functions This function is easy to obtain convergence as opposed to SUM_EXPON_1 C-code for the function *********************** answer = a0*(1.0 - exp(-x/a1)) + a2*(1.0 - exp(-x/a3))