Exercise Interpolation
-
Implement a function which makes a polynomial
interpolation of a table [xt[],yt[]] at a given point using k nearest
tabulated points.
- Implement a function for the quadratic spline interpolation.
- Location of the index k: xt[k]<x<x[k+1] must be done using the
binary search.
-
Create some interesting interpolation examples.