本文主要是介绍Matlab绘制动态心形线,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 代码
for alpha=0:0.1:30
x=-1.8:0.001:1.8;
y=(x.^2).^(1/3)+0.9*(3.3-x.^2).^(1/2).*sin(alpha*pi*x);
plot(x,y,'r-','LineWidth',1.2);
set(gca,'YGrid','on');
axis([-3,3,-2,4]);
text(-2,3.35,'$f(x)=x^{\frac{2}{3}}+0.9(3.3-x^2)^{\frac{1}{2}}sin(\alpha\pi x)$','Interpreter','latex','Fontsize',15);
str_alpha=['$\alpha=',num2str(alpha),'$'];
text(-0.4,2.8,str_alpha,'Interpreter','latex','Fontsize',15);
pause(0.03);
end
2. 效果
这篇关于Matlab绘制动态心形线的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!