matlab课习题答案 (附图).docVIP

  • 34
  • 0
  • 约1.51万字
  • 约 22页
  • 2016-10-15 发布于贵州
  • 举报
matlab课习题答案 (附图)

习题2.1 画出下列常见曲线的图形 立方抛物线 命令:syms x y; ezplot(x.^(1/3)) (2)高斯曲线y=e^(-X^2); 命令:clear syms x y; ezplot(exp(-x*x)) (3)笛卡尔曲线 命令: clear syms x y; a=1; ezplot(x^3+y^3-3*a*x*y) 蔓叶线 命令: clear syms x y; a=1 ezplot(y^2-(x^3)/(a-x)) 摆线: 命令: clear t=0:0.1:2*pi; x=t-sin(t); y=2*(1-cos(t)); plot(x,y) 7 命令: clear t=0:0.1:2*pi; x=cos(t); y=sin(t); z=t; plot3(x,y,z) 阿基米德螺线 命令:clear theta=0:0.1:2*pi; rho1=(theta); subplot(1,2,1),polar(theta,rho1) 对数螺线 命令:clear theta=0:0.1:2*pi; rho1=exp(theta); subplot(1,2,1),polar(theta,rho1) 心形线 命令: clear theta=0:0.1:2*pi; rho1=1+cos(theta); sub

文档评论(0)

1亿VIP精品文档

相关文档