Cubic spline interpolation is a general interpolation technique using a polynomial of third degree.
See: https://en.wikipedia.org/wiki/Spline_interpolation#Algorithm_to_find_the_interpolating_cubic_spline
Add CubicSplineIntepolation class to the Numerics.Interpolation namespace. The class should be instantiable, with possibility for computation and query of the results (polynomial coefficients) through property. Support for applications in the form of static methods should also be added.
Cubic spline interpolation is a general interpolation technique using a polynomial of third degree.
See: https://en.wikipedia.org/wiki/Spline_interpolation#Algorithm_to_find_the_interpolating_cubic_spline
Add
CubicSplineIntepolationclass to theNumerics.Interpolationnamespace. The class should be instantiable, with possibility for computation and query of the results (polynomial coefficients) through property. Support for applications in the form of static methods should also be added.