Interpolation

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I have two columns of data that form a non-linear plot.
How can I find intermediate values in this data by
interpolation?
 
Try to get a good trendline fit and come back with more info, please

best wishes
 
If you want to interpolate (as opposed to extrapolate), then you have
lots of options. For interpolation between close points, you could use
linear interpolation. For more distant points or more critical
applications, you could use fit a polynomial or a ratio of polynomials,
or some other easily fit nonlinear function.

The more you know about the relationship, the better you can tailor the
method. Extrapolation is more uncertain unless you know something about
the form of the relationship.

Excel's chart smoother appears to use Bezier curves. Brian Murphy has
posted code for Bezier curves.

http://www.xlrotor.com/excel_stuff.htm

In most cases, the difference between Bezier curves and cubic splines is
minimal. An example where the difference is noticeable is

http://www.google.com/groups?threadm=3E7291CA.7020907@no_e-mail.com

David Braden has posted code for cubic splines

http://www.google.com/[email protected]

Jerry
 
Back
Top