scirs2-python 0.4.3

Python bindings for SciRS2 - A comprehensive scientific computing library in Rust (SciPy alternative)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Interpolation (``scirs2.interpolate``)
========================================

1-D, 2-D, RBF, and spline interpolation routines.

.. automodule:: scirs2.interpolate
   :members:
   :undoc-members:
   :show-inheritance:

Available Functions and Classes
--------------------------------

- ``interp1d_py(x, y, kind)`` — 1-D interpolation (linear, cubic, nearest)
- ``pchip_py(x, y)`` — Piecewise Cubic Hermite interpolation
- ``RBFInterpolator(y, d, kernel, epsilon)`` — Radial basis function interpolation

See the :doc:`../guides/quickstart` for usage examples.