Vibe coding for Valentine's Day
I used Claude Code along with MATLAB's MCP server to develop this animation that morphs between the MATLAB membrane and a 3D heart. Details at Coding a MATLAB Valentine animation with agentic AI » The MATLAB Blog - MATLAB & Simulink
Show me what you can do!
If you share code, may I suggest putting it in a GitHib repo and posting the link here rather than posting the code directly in the forum? When we tried a similar exercise on Vibe-coded Christmas trees, we posted the code directly to a single discussion thread and quickly brought the forum software to its knees.

7 Comments
Time DescendingLove the transformation animation!

Includes an interactive GUI featuring a variety of custom colormap presets. Link to the GitHub repo for anyone interested in trying it out.
Accelerated using the newly released Claude Opus 4.6.
So beautiful, I love the different layers and how smooth the animation keeps changing. Beautiful work!
[x, y] = meshgrid(linspace(-1.5, 1.5, 60), linspace(-1.5, 1.2, 30));
heart = (x.^2 + y.^2 - 1).^3 - x.^2 .* y.^3;
heart = flipud(heart);
art = repmat(' ', size(heart));
art(heart <= 0) = '*';
for i = 1:size(art, 1)
disp(art(i, :));
end
Sign in to participate
