__init__.py 1005 Bytes
Newer Older
root's avatar
root committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Univariate Interpolation
from cupyx.scipy.interpolate._polyint import BarycentricInterpolator  # NOQA
from cupyx.scipy.interpolate._polyint import KroghInterpolator  # NOQA
from cupyx.scipy.interpolate._polyint import barycentric_interpolate  # NOQA
from cupyx.scipy.interpolate._polyint import krogh_interpolate  # NOQA
from cupyx.scipy.interpolate._interpolate import PPoly, BPoly  # NOQA
from cupyx.scipy.interpolate._cubic import (  # NOQA
    CubicHermiteSpline, PchipInterpolator, pchip_interpolate,  # NOQA
    Akima1DInterpolator)  # NOQA

# 1-D Splines
from cupyx.scipy.interpolate._bspline import BSpline, splantider, splder  # NOQA
from cupyx.scipy.interpolate._bspline2 import make_interp_spline  # NOQA

# Radial basis functions
from cupyx.scipy.interpolate._rbfinterp import RBFInterpolator  # NOQA
from cupyx.scipy.interpolate._rgi import RegularGridInterpolator  # NOQA
from cupyx.scipy.interpolate._rgi import interpn  # NOQA

# Backward compatibility
pchip = PchipInterpolator  # NOQA