Polynomial interpolation
|
10-12-2016, 08:12 PM
(This post was last modified: 11-06-2016 11:47 AM by JMB.)
Post: #1
|
|||
|
|||
Polynomial interpolation
This is a one-line program, to find an interpolated value using a polynomial interpolation function to a set of data points.
PHP Code: EXPORT Polynomial_Interpolation(data,x) Example 1: Find the interpolated value y at x=1.5, given the data points (0,3), (1,5) and (2,9) Executing: Polynomial_Interpolation([[0,3],[1,5],[2,9]],1.5), we get: 6.75 (parabolic interpolation through 3 points) Example 2: Find the interpolated value y at x=1.5, given the data points (1,5) and (2,9) Executing: Polynomial_Interpolation([[1,5],[2,9]],1.5), we get: 7 (linear interpolation through 2 points) |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)