Zachary Pincus <zachary.pincus <at>
yale.edu> writes:
> This doesn't answer your specific question, but look at
> scipy.ndimage.map_coordinates()
> for general-purpose spline interpolation of regularly-spaced (e.g. image)
> data. If you want to repeatedly interpolate the same data, you can get the
> spline coefficients with:
> scipy.ndimage.spline_filter() and pass them to map_coordinates()
> with the "prefilter=False" option.
Thank you very much for your helpful hint. I tried out the code you suggested