早教吧 育儿知识 作业答案 考试题库 百科 知识分享

matlab绘图解答用subplot函数分别在不同坐标系下作出下列四条曲线,为每幅图形加上标题:①概率曲线y=exp(-x^2)(-5x5)②四叶玫瑰线r=sin2x(0

题目详情
matlab绘图解答
用subplot函数分别在不同坐标系下作出下列四条曲线,为每幅图形加上标题:
①概率曲线 y=exp(-x^2)(-5 x 5)
②四叶玫瑰线 r=sin2x (0
▼优质解答
答案和解析
x=1:0.01:5;
y=exp(-x.*x);
subplot(2,2,1)
plot(x,y);
title('概率曲线')
subplot(2,2,2)
a=linspace(0,2*pi);
b=sin(2*a);
polar(a,b);
title('四叶玫瑰线')
subplot(2,2,3)
ezplot('3*t/(1+t.^3)','3*(t.^2)/(1+t.^3)',[0 20]);
title('叶形线')
subplot(2,2,4)
f1=inline('log((1+sqrt(1-y.^2))./y)-sqrt(1-y.^2)-x');
f2=inline('log((1-sqrt(1-y.^2))./y)+sqrt(1-y.^2)-x');
ezplot(f1);
hold on;
ezplot(f2);
hold on;
title('拽物线');
测试肯定能画出图来