fig_3_3_ab.m
来自「Ultra.Wideband.Signals.and.Systems.in.Co」· M 代码 · 共 27 行
M
27 行
clear all;
it=0;
for t=-7:.1:7;
it=it+1;
fc(it)=(t*t-1)*exp(-t*t/4);
end;
figure (1);plot(-7:.1:7,fc,'k'); grid on;
axis([-7 7 -1.5 1.5]);
xlabel('Time, sec');ylabel('Continious time UWB pulse');grid on;
it=0;
for t=-7:.35:7;
it=it+1;
fd(it)=(t*t-1)*exp(-t*t/4);
end;
figure (2);
plot(-7:.35:7,fd,'rs','LineWidth',2,...
'MarkerEdgeColor','k',...
'MarkerFaceColor','g',...
'MarkerSize',4)
grid on;
axis([-7 7 -1.5 1.5]);
xlabel('Time, sec');ylabel('Discrete-time UWB pulse');grid on;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?