📄 sincfig.m
字号:
%plot of sinc
% For Figure 1.3 in S/W book
t = linspace(-8,8,500);
figure(1);
plot(abs(sinc(t)),'linewidth',2)
hold on
plot([0 500],[0 0]);
axis off
print -deps swsinc1
figure(2);
plot((sinc(t)).^2,'linewidth',2)
hold on
plot([0 500],[0 0]);
axis off
print -deps swsinc2
%%%%%%%%%%%%%%%%%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -