natural-neighbor-interpolation icon indicating copy to clipboard operation
natural-neighbor-interpolation copied to clipboard

Fast, discrete natural neighbor interpolation in 3D on the CPU.

Results 5 natural-neighbor-interpolation issues
Sort by recently updated
recently updated
newest added

hey is there a way to switch off extrapolation

Bumps [scipy](https://github.com/scipy/scipy) from 0.19.1 to 1.10.0. Release notes Sourced from scipy's releases. SciPy 1.10.0 Release Notes SciPy 1.10.0 is the culmination of 6 months of hard work. It contains many...

dependencies

Hi, I just tried running your example i.e., `import scipy.interpolate import numpy as np import naturalneighbor num_points = 10 num_dimensions = 3 points = np.random.rand(num_points, num_dimensions) values = np.random.rand(num_points) grids...

Dear Sir/Madam When I tried to install your package using the command `pip install naturalneighbor` I got the error listed in the picture below. It seems the cpp build fails...

In line 128 of interpolate/points.py, in the function natural_neighbor_point(), geometry.circumcenter() is called: ` c1 = geometry.circumcenter(grid_loc, tri.points[p1], tri.points[p2]) ` at this point, very often the ZeroDivisionError is raised from line...