matlab
MATLAB and GNU Octave numerical computing for matrix operations, data analysis, visualization, and scientific computing. Use when writing MATLAB/Octave scripts for linear algebra, signal processing, image processing, differential equations, optimization, statistics, or creating scientific visualizations. Also use when the user needs help with MATLAB syntax, functions, or wants to convert between MATLAB and Python code. Scripts can be executed with MATLAB or the open-source GNU Octave interpreter.
npx skills add LeonChaoX/qinyan-academic-skills --skill matlab --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# MATLAB/Octave Scientific Computing MATLAB is a numerical computing environment optimized for matrix operations and scientific computing. GNU Octave is a free, open-source alternative with high MATLAB compatibility. ## Quick Start **Running MATLAB scripts:** ```bash # MATLAB (commercial) matlab -nodisplay -nosplash -r "run('script.m'); exit;" # GNU Octave (free, open-source) octave script.m ``` **Install GNU Octave:** ```bash # macOS brew install octave # Ubuntu/Debian sudo apt install octave # Windows - download from https://octave.org/download ``` ## Core Capabilities ### 1. Matrix Operations MATLAB operates fundamentally on matrices and arrays: ```matlab % Create matrices A = [1 2 3; 4 5 6; 7 8 9]; % 3x3 matrix v = 1:10; % Row vector 1 to 10 v = linspace(0, 1, 100); % 100 points from 0 to 1 % Special matrices I = eye(3); % Identity matrix Z = zeros(3, 4); % 3x4 zero matrix O = ones(2, 3); % 2x3 ones matrix R = rand(3, 3); % Random uniform N = randn(3, 3); % Random normal % Matrix operations B = A'; % Transpose C = A * B; % Matrix multiplication D = A .* B; % Element-wise multiplication E = A \ b; % Solve linear system Ax = b F = inv(A); % Matrix inverse ``` For complete matrix
- Quick Start
- Core Capabilities
- 1. Matrix Operations
- 2. Linear Algebra
- 3. Plotting and Visualization
- 4. Data Import/Export
- 5. Control Flow and Functions
- 6. Statistics and Data Analysis
- 7. Differential Equations
- 8. Signal Processing
- Common Patterns
- Pattern 1: Data Analysis Pipeline
- Pattern 2: Numerical Simulation
- Pattern 3: Batch Processing
MATLAB (commercial)
matlab -nodisplay -nosplash -r "run('script.m'); exit;"
GNU Octave (free, open-source)
octave script.m
macOS
brew install octave
Ubuntu/Debian
sudo apt install octave
Windows - download from https://octave.org/downloadWhat does the matlab skill do?
MATLAB and GNU Octave numerical computing for matrix operations, data analysis, visualization, and scientific computing. Use when writing MATLAB/Octave scripts for linear algebra, signal processing, image processing, differential equations, optimization, statistics, or creating scientific visualizations. Also use when the user needs help with MATLAB syntax, functions, or wants to convert between MATLAB and Python code. Scripts can be executed with MATLAB or the open-source GNU Octave interpreter.
How do I install it?
Run `npx skills add LeonChaoX/qinyan-academic-skills --skill matlab --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 LeonChaoX/qinyan-academic-skills, a repository with 759 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.
