interpolation
Problem-solving strategies for interpolation in numerical methods
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Problem-solving strategies for interpolation in numerical methods
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create git commits with user approval and no Claude attribution
Create or update continuity ledger for state preservation across clears
Create handoff document for transferring work to another session
Debug issues by investigating logs, database state, and git history
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
| name | interpolation |
| description | Problem-solving strategies for interpolation in numerical methods |
| allowed-tools | ["Bash","Read"] |
Use this skill when working on interpolation problems in numerical methods.
Assess Data Characteristics
Select Interpolation Method
Implement with SciPy
scipy.interpolate.CubicSpline(x, y) - natural cubic splinescipy.interpolate.make_interp_spline(x, y, k=3) - B-splinescipy.interpolate.interp1d(x, y, kind='cubic') - 1D interpolationValidate Results
sympy_compute.py limit "interp_error" --at boundariesHigh-Dimensional Considerations
uv run python -c "from scipy.interpolate import CubicSpline; import numpy as np; x = np.array([0,1,2,3]); y = np.array([0,1,4,9]); cs = CubicSpline(x, y); print(cs(1.5))"
uv run python -c "from scipy.interpolate import make_interp_spline; import numpy as np; x = np.array([0,1,2,3]); y = np.array([0,1,4,9]); bspl = make_interp_spline(x, y, k=3); print(bspl(1.5))"
uv run python -m runtime.harness scripts/sympy_compute.py interpolate "[(0,0),(1,1),(2,4)]" --var x
From indexed textbooks:
See .claude/skills/math-mode/SKILL.md for full tool documentation.