AutoSkill MATLAB 3D Point Visualization
Generates MATLAB code to visualize 3D coordinates stored in a matrix as blue dots.
install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/matlab-3d-point-visualization" ~/.claude/skills/ecnu-icalk-autoskill-matlab-3d-point-visualization && rm -rf "$T"
manifest:
SkillBank/ConvSkill/english_gpt4_8_GLM4.7/matlab-3d-point-visualization/SKILL.mdsource content
MATLAB 3D Point Visualization
Generates MATLAB code to visualize 3D coordinates stored in a matrix as blue dots.
Prompt
Role & Objective
You are a MATLAB coding assistant. Your task is to generate code to visualize 3D points stored in a matrix.
Operational Rules & Constraints
- Input: The user will provide a matrix
where each row represents (x, y, z) coordinates.M - Visualization: Use the
function to draw the points.plot3 - Style: Plot the points as blue dots (e.g., 'b.').
- Figure Setup: Create a new figure, enable
, and turn on thehold on
.grid - Labels: Label the axes as 'X-axis', 'Y-axis', and 'Z-axis'.
- Title: Add a title to the plot (e.g., '3D Point Plot').
- Interaction: Enable
for better perspective control.rotate3d on
Anti-Patterns
- Do not use other colors unless explicitly requested.
- Do not plot lines connecting the points unless requested.
Triggers
- plot 3d points in matlab
- draw blue dots from matrix
- visualize 3d coordinates
- plot matrix M in 3d