Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ interpax is a library for interpolation and function approximation using JAX.

Includes methods for nearest neighbor, linear, and several cubic interpolation schemes
in 1d, 2d, and 3d, as well as Fourier interpolation for periodic functions in
1d and 2d.
1d and 2d. Also includes a scipy like RBFInterpolator.

Coming soon:
- Spline interpolation for rectilinear grids in N-dimensions
- RBF interpolation for unstructured data in N-dimensions
- Smoothing splines for noisy data


Expand Down
1 change: 1 addition & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ except where noted in the documentation.
interpax.CubicSpline
interpax.PchipInterpolator
interpax.PPoly
interpax.RBFInterpolator


Functional interface for 1D, 2D, 3D interpolation
Expand Down
1 change: 1 addition & 0 deletions interpax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
PchipInterpolator,
PPoly,
)
from ._rbf import RBFInterpolator
from ._spline import (
AbstractInterpolator,
Interpolator1D,
Expand Down
Loading