Agent skill

python-scientific-computing

Python for engineering analysis, numerical computing, and scientific workflows using NumPy, SciPy, SymPy

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill python-scientific-computing --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 20 KB
Bundled scripts: none
Version: 1.0.0
Declared author: workspace-hub
Path: skills/ai-ml/python-scientific-computing/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

Master Python for engineering analysis, numerical simulations, and scientific workflows using industry-standard libraries.

How it works

  • Provides guidance on when to use Python for numerical analysis, engineering calculations, matrix operations, symbolic mathematics, data analysis, and simulations.
  • Covers core capabilities in three sections:
    • NumPy: demonstrates array creation, special arrays, and common linear algebra operations such as matrix multiplication, inversion, eigen decomposition, solving systems, and determinants.
    • SciPy: includes examples for optimization (minimization and root finding), integration and ODE solving, and interpolation (1D and 2D).
    • SymPy: shows symbolic mathematics including expression manipulation, differentiation, integration, solving equations, and solving systems.
  • Contains complete usage examples and concrete code blocks for practical tasks, plus several end-to-end scenarios (e.g., marine engineering, structural dynamics, wave spectrum, motion integration, mooring optimization, beam deflection).
  • Each example uses specific functions and modules from the corresponding libraries, with explicit function calls and parameters.

When to use it

Use Python scientific computing when you need:

  • Numerical analysis - Solving equations, optimization, integration
  • Engineering calculations - Stress, strain, dynamics, thermodynamics
  • Matrix operations - Linear algebra, eigenvalue problems
  • Symbolic mathematics - Analytical solutions, equation manipulation
  • Data analysis - Statistical analysis, curve fitting
  • Simulations - Physical systems, finite element preprocessing

What it can touch

  • Tools referenced: claude-code (as the declared tool)
  • Libraries and modules: NumPy, SciPy, SymPy, matplotlib (as shown in examples)

Caveats

  • Avoid real-time performance-critical tasks in Python; consider C++/Fortran in such cases
  • Not intended for simple calculations or when no numerical computation is needed
  • Examples assume standard installations of NumPy, SciPy, and SymPy; behavior may vary with versions
From the SKILL.md

# Python Scientific Computing Skill Master Python for engineering analysis, numerical simulations, and scientific workflows using industry-standard libraries. ## When to Use This Skill Use Python scientific computing when you need: - **Numerical analysis** - Solving equations, optimization, integration - **Engineering calculations** - Stress, strain, dynamics, thermodynamics - **Matrix operations** - Linear algebra, eigenvalue problems - **Symbolic mathematics** - Analytical solutions, equation manipulation - **Data analysis** - Statistical analysis, curve fitting - **Simulations** - Physical systems, finite element preprocessing **Avoid when:** - Real-time performance critical (use C++/Fortran) - Simple calculations (use calculator or Excel) - No numerical computation needed ## Core Capabilities ### 1. NumPy - Numerical Arrays and Linear Algebra **Array Operations:** ```python import numpy as np # Create arrays array_1d = np.array([1, 2, 3, 4, 5]) array_2d = np.array([[1, 2, 3], [4, 5, 6]]) # Special arrays zeros = np.zeros((3, 3)) ones = np.ones((2, 4)) identity = np.eye(3) linspace = np.linspace(0, 10, 100) # 100 points from 0 to 10 # Array operations (vectorized - fast!) x = np

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Core Capabilities
  3. 1. NumPy - Numerical Arrays and Linear Algebra
  4. 2. SciPy - Scientific Computing
  5. 3. SymPy - Symbolic Mathematics
  6. Complete Examples
  7. Example 1: Marine Engineering - Catenary Mooring Line
  8. Example 2: Structural Dynamics - Natural Frequency
  9. Example 3: Hydrodynamic Analysis - Wave Spectrum
  10. Example 4: Numerical Integration - Velocity to Displacement
  11. Example 5: Optimization - Mooring Pretension
  12. Example 6: Symbolic Mathematics - Beam Deflection
  13. Best Practices
  14. 1. Use Vectorization
Ships with 1 file
  • metadata.json
Commands it runs
Using pip
pip install numpy scipy sympy matplotlib
Using UV (faster)
uv pip install numpy scipy sympy matplotlib
Specific versions
pip install numpy==1.26.0 scipy==1.11.0 sympy==1.12
More from claude-skill-registry
All skills →
About this skill
What does the python-scientific-computing skill do?

Python for engineering analysis, numerical computing, and scientific workflows using NumPy, SciPy, SymPy

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill python-scientific-computing --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going