Peeking at different interpolation algorithms
|
08-10-2019, 08:49 PM
Post: #4
|
|||
|
|||
RE: Peeking at different interpolation algorithms
(08-02-2019 09:27 PM)Albert Chan Wrote: We can build interpolation formula on the fly, for any path, without looking up. Just think of what the interpolation X values sequence. Then assume the list were originally sorted the same way, with numbers on the diagonal. For Above Gauss Forward Formula, X's = 0, 1, -1, 2, -2 y(p) = 17.107 + (p-0)/1*(-0.7638 + (p-1)/2*(-0.0564 + (p+1)/3*(-0.0076 + (p-2)/4*(-.0022))))) Had we wanted Gauss Backward Formula, X's = 0, -1, 1, -2, 2 y(p) = 17.107 + (p-0)/1*(-0.7074 + (p+1)/2*(-0.0564 + (p-1)/3*(-0.0054 + (p+2)/4*(-.0022))))) |
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Peeking at different interpolation algorithms - Namir - 10-21-2017, 03:00 PM
RE: Peeking at different interpolation algorithms - Albert Chan - 08-02-2019, 09:27 PM
RE: Peeking at different interpolation algorithms - Albert Chan - 08-10-2019 08:49 PM
RE: Peeking at different interpolation algorithms - Albert Chan - 08-04-2019, 01:28 PM
|
User(s) browsing this thread: 1 Guest(s)