Basically, I want to replicate MATLAB's interp3 function in Python with the 'cubic' setting, but I'm not sure what function in Python is appropriate. RGI only uses linear interpolation, while RBF is associated with unstructured measurements (one thing I want to do in my project is to take the gradient of a value associated with the interpolation, and thus a sparse Jacobian matrix for the term associated with the interpolation process is desired for speed). Is there a function in Python for doing this in 3D, whether a library or a publicly available project? I've had no luck exploring so far.
Edit: How do I reopen this question? RBF has noticeable approximation error, and its cubic setting is not equivalent to that of interp3