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