interp3d icon indicating copy to clipboard operation
interp3d copied to clipboard

A fast alternative for scipy.interpolate.RegularGridInterpolator in d=3

Results 4 interp3d issues
Sort by recently updated
recently updated
newest added

Hi @jglaser! Thanks so much for sharing this, awesome! I am looking for faster solutions myself. I tried with numba, and failed, and I tried your approach, and it is...

Shouldnt the out of bounds check be inclusive of the maximum indices? So ``` if x0 >= 0 and y0 >= 0 and z0 >= 0 and x1 = 0...

I followed the instructions in the README, i.e., I did a ```bash python3 setup.py install ``` first, which produced sane output. But when I run `from interp3d import interp_3d`, I...

Hello, thank you for the project, I have one question please, what is the principle of the cubic interpolation method used by RegularGridInterpolator? the cubic spline method defined by chunks,...