f(t)=(2-e-2t)u(t)的MATLAB程序怎么写

2025-01-20 10:49:50
推荐回答(4个)
回答1:

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

回答2:

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)');

回答3:

楼上错误,同求答案

回答4:

t=0:10;
f=(2-e.*(12*t))*u;