Results 1 to 6 of 6

Thread: Exponential interpolation

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2000
    Location
    Mexico City
    Posts
    306

    Exponential interpolation

    Hi all!!

    I have some points (x,y). When I make a graphic with them, it seems to be an exponential function. I need to calculate some points and I want to use an exponential.

    Any clue???
    Thanks
    If things were easy, users might be programmers.

  2. #2
    Hyperactive Member DavidHooper's Avatar
    Join Date
    Apr 2001
    Posts
    357
    does the curve go up or down?

    the general eqn is (i think):

    y=c * e ^ (ax)

    where a and c are constants. and the power is negative if the curve goes down.
    There are 10 types of people in the world - those that understand binary, and those that don't.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2000
    Location
    Mexico City
    Posts
    306
    The curve is going up.

    Thanks
    If things were easy, users might be programmers.

  4. #4
    jim mcnamara
    Guest
    Where (ax) would be 1 + the growth rate ie., 4% growth rate would (assuming t = 1) be 1.04

    A standard exponential growth rate is written

    n = n0 * e ^(r*t) where r= rate of growth, t = time n-0 = initial value , n= value at time t

  5. #5
    Member
    Join Date
    Apr 2001
    Location
    Emden, Germany
    Posts
    63
    If your data is really exponential, you can linearise it with log(y). Then make a linear regression and convert the data back to its original form by calculating e^().

    There is also a nice shareware program than can do all these wonders automatically. It's called CurveExpert. you'll find it by typing into some search engine. (however, it works completely different from what I described above).
    WIN 2000 Prof. / WIN 98 / WIN 95, IE6.0, Mathematica 4.0
    Visual Studio Enterprise 6.0 sp5

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2000
    Location
    Mexico City
    Posts
    306
    Log(y) worked perfectly. Thanks.
    If things were easy, users might be programmers.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width