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

MATLAB问题。请写出程序附上图形7、在同一坐标中,可以绘制3个同心圆,并加坐标控制。8、用fplot函数绘制f(x)=cos(tan(πx))的曲线。9、绘制r=sin(t)cos(t)的极坐标图,并标记数据点。10、分别以条

题目详情
MATLAB问题。请写出程序附上图形
7、在同一坐标中,可以绘制3个同心圆,并加坐标控制。
8、用fplot函数绘制f(x)=cos(tan(πx))的曲线。
9、绘制r=sin(t)cos(t)的极坐标图,并标记数据点。
10、分别以条形图、阶梯图、杆图和填充图形式绘制曲线y=2sin(x)
▼优质解答
答案和解析

你看看这是不是你要的答案?

function circle(R)

theta=0:0.01:2*pi;

x=R*sin(theta);

y=R*cos(theta);

plot(x,y)

axis equal

hold on

end

clear all

for r=1:3

    circle(r);

end

f_handl=@(x)cos(tan(pi*x));

fplot(f_handl,[-1,1]);

title('figure:cos(tan(pi*x)) ');

clear all

t=linspace(0,2*pi);

r=sin(t).*cos(t)

polar(t,r);

title('figure a:polar');

clear all

t=linspace(0,2*pi,25);

y=2*sin(t);

subplot(2,2,1)

bar(t,y);

title('figure a:bar');

subplot(2,2,2)

stairs(t,y);

title('figure b:stairs');

subplot(2,2,3)

stem(t,y);

title('figure c:stem');

subplot(2,2,4)

fill(t,y,'r');

title('figure d: fill')