skills/smithery.ai/interpolation

interpolation

Installation
SKILL.md

Interpolation Skill

Connect the dots. Choose SciPy for standard usage, JAX for gradient-based optimization.

Contents

  • Examples
    • Cubic Splines, PCHIP, Regular Grids.
  • Reference
    • Theoretical background on splines and grid methods.

Quick Decision Tree

  1. Standard/CPU? -> SciPy (CubicSpline, RegularGridInterpolator).
  2. Differentiable/GPU? -> Interpax (interpax.interp1d).
  3. Monotonicity Important? -> Use PCHIP (SciPy) or cubic2 (Interpax).
Installs
2
First Seen
Mar 21, 2026
interpolation from smithery.ai