Recent content by Clifford

  1. C

    Undergrad Euler expansion of double exponential?

    Simple question, I have used the euler expansion to estimate a variable that grows as a single exponential. adapt = Amax * exp(-tau*X); In excerpted form: for (i=1;i<npts; i++) { adapt[i] = adapt[i-1] + (Amax -adapt[i-1]) * dt / tau; } where dt is the step size and tau is...