发布网友 发布时间:2022-04-23 16:51
共4个回答
热心网友 时间:2023-09-20 20:37
t=[0:0.01:10];
x=(2-exp(-2*t));
plot(t,x);
xlabel('t');
ylabel('x(t)');
title('x(t)=(2-exp(-2*t)');
grid on
热心网友 时间:2023-09-20 20:38
t=-2:0.02:2;
f1=(2-exp(-2*t)).*heaviside(t);
plot(t,f1);
xlabel('t');ylabel('(2-e^(-2t))u(t)');
title('(2-e^(-2t))u(t)');
热心网友 时间:2023-09-20 20:38
楼上错误,同求答案
热心网友 时间:2023-09-20 20:39
t=0:10;
f=(2-e.*(12*t))*u;