关于matlab中的line函数作图,x4函数我用了line([0.5,0],[0.5,0.7788]),应该是把曲线链
来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/18 22:10:39
关于matlab中的line函数作图,x4函数我用了line([0.5,0],[0.5,0.7788]),应该是把曲线链接到直线才对
详细函数在此.
t=-2:0.01:0;tt=0:0.01:2;
n=length(t);
u=zeros(1,n);
x2=2*exp(-tt/2);subplot(1,2,1);
plot(tt,x2);
hold on;
plot(t,u);
line([0,0],[0,2]);
hold off;
title('x2(t)');
xlabel('时间/s');ylabel('振幅');
axis([-2,2,-0.1,2.8]);
t2=-2:0.01:0.5;tt2=0.5:0.01:2;
n2=length(t2);
u2=zeros(1,n2);x4=exp(-tt2/2);subplot(1,2,2);
plot(tt2,x4);
hold on;
plot(t2,u2);
line([0.5,0],[0.5,exp(-0.25)]);
hold off;title('x4(t)');axis([-2,2,-0.1,1]);
xlabel('时间/s');ylabel('振幅');
详细函数在此.
t=-2:0.01:0;tt=0:0.01:2;
n=length(t);
u=zeros(1,n);
x2=2*exp(-tt/2);subplot(1,2,1);
plot(tt,x2);
hold on;
plot(t,u);
line([0,0],[0,2]);
hold off;
title('x2(t)');
xlabel('时间/s');ylabel('振幅');
axis([-2,2,-0.1,2.8]);
t2=-2:0.01:0.5;tt2=0.5:0.01:2;
n2=length(t2);
u2=zeros(1,n2);x4=exp(-tt2/2);subplot(1,2,2);
plot(tt2,x4);
hold on;
plot(t2,u2);
line([0.5,0],[0.5,exp(-0.25)]);
hold off;title('x4(t)');axis([-2,2,-0.1,1]);
xlabel('时间/s');ylabel('振幅');
把倒数第三行改为line([0.5,0.5],[0,exp(-0.25)],'color','g'),试试
关于matlab中的line函数作图,x4函数我用了line([0.5,0],[0.5,0.7788]),应该是把曲线链
VB line函数用法
我编辑的matlab函数老是出现这种问题:Error using spirallength (line 9) Not e
为什么我用MATLAB多项式拟合得到的函数,再用函数去作图时两者的曲线会不一样呢?
分段函数用matlab作图,
matlab用line函数连接原点和另一点,为什么画出来的是x轴
关于matlab三维分段函数作图
matlab隐函数作图
matlab三维作图函数,
MATLAB函数作图问题
符号函数 作图 matlab
MATLAB中plot函数和line函数作用有区别吗?