欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matlab正余弦画心形图案

程序员文章站 2022-07-12 22:59:49
...
for b=0:0.08:20 
    clf;
    x=[0:0.01:1.8];
    y=x.^(2/3)+0.9*sqrt(3.3-x.^2).*sin(b.*pi.*x);
    plot(x,y,'r');
    hold on
    plot(-x,y,'r')
    plot(x*2/3,y*2/3,'b')
    plot(-x*2/3,y*2/3,'b')
    axis equal
    pause(0.0005)
    hold off
end

matlab正余弦画心形图案