Cubic hermit spline interpolation python
问题 I would like to calculate a third-degree polynomial that is defined by its function values and derivatives at specified points. https://en.wikipedia.org/wiki/Cubic_Hermite_spline I know of scipy's interpolation methods. Specifically splprep to interpolate a N-dimensional spline and splev to eveluate its derivatives. Is there a python routine that takes function values f(x) and derivatives f'(x) corresponding to values x and calculates a spline representation that fits the given data. To give