Reputation:
I am currently converting our matlab code base to python 3.5 with scipy/numpy.
The line i am currently struggling with contains the interp2 function with spline as the method. I generally am able to find the counterpart in the world of scipy, but the description of the spline method is too much for me
The interpolation is based on a cubic spline using not-a-knot end conditions.
What interpolate method from scipy/numpy should I use to get the same effect?
Upvotes: 1
Views: 1331