SKILL.md
Interpolation Skill
Connect the dots. Choose SciPy for standard usage, JAX for gradient-based optimization.
Contents
- [Examples](examples.md)
- Cubic Splines, PCHIP, Regular Grids.
- [Reference](reference.md)
- Theoretical background on splines and grid methods.
Quick Decision Tree
- Standard/CPU? ->
SciPy(CubicSpline,RegularGridInterpolator). - Differentiable/GPU? ->
Interpax(interpax.interp1d). - Monotonicity Important? -> Use
PCHIP(SciPy) orcubic2(Interpax).