Назад към всички

interpolation-approximation

// Function interpolation and approximation methods

$ git log --oneline --stat
stars:384
forks:73
updated:March 4, 2026
SKILL.mdreadonly
SKILL.md Frontmatter
nameinterpolation-approximation
descriptionFunction interpolation and approximation methods
allowed-toolsBash,Read,Write,Edit,Glob,Grep
metadata[object Object]

Interpolation and Approximation

Purpose

Provides function interpolation and approximation methods for data fitting and function representation.

Capabilities

  • Polynomial interpolation (Lagrange, Newton, Chebyshev)
  • Spline interpolation (cubic, B-spline)
  • Rational approximation (Pade)
  • Least squares fitting
  • Minimax approximation (Remez algorithm)
  • Approximation error bounds

Usage Guidelines

  1. Method Selection: Choose based on smoothness and accuracy needs
  2. Node Placement: Use Chebyshev nodes to minimize Runge phenomenon
  3. Spline Order: Select spline degree based on continuity requirements
  4. Error Analysis: Bound approximation errors rigorously

Tools/Libraries

  • Chebfun
  • scipy.interpolate