Function Description ******************** Name: EXPON Function: f(x) = a0 * exp(a1*x) + a2 Parameters: a0 a1 a2 Notes ***** Fit to a single exponential decay C-code for the function *********************** answer = a[0] * exp(a[1] * x) + a[2];