求助!!!Matlab画图问题

2025-06-22 18:32:21
推荐回答(1个)
回答1:

Tc=0.5 ;
A=1;
Tau=0.2333 ;
t=0:0.01:1;
y=A*(1-4*pi*((t-Tc)./Tau).^2).*exp(-2*pi.*((t-Tc)./Tau).^2);
figure(1);
plot(t,abs(y))
xlabel('Time(ns)');
ylabel('Amplitude');
grid on;
axis on;
按上面的语句试试