Function Description ******************** Name: SUM_EXPON_1 Function: f(x) = a0 * EXP(-x/a1) + a2 * EXP(-x/a3) Parameters: a0 a1 a2 a3 Notes ***** Fit to a sum of two exponential decay functions This function is difficult to obtain convergence. Try holding at least one parameter constant before hitting the best fit button. C-code for the function *********************** answer = a[0] * exp(-x/a[1]) + a[2] * exp(-x/a[3]);