page_415.m

来自「Signal and Sytem Using Matlab 书的源代码 注释详尽」· M 代码 · 共 21 行

M
21
字号
% Example 10.8
% 数字高通滤波器,滤除1+cost的频率成分
numd = [0.597 -1.1394 0.5697];  % define the digital filter
dend = [1 -1.516 0.7028];
n = 0:75;
T = 0.2;
x = 1 + cos(n*T) + cos(T*5*n);
y = filter(numd,dend,x);
% get more resolution of x(t) for plotting
t = 0:.1:15;
xa = 1 + cos(t) + cos(5*t);
clf
subplot(211),plot(t,xa);     % analog input, x(t)
xlabel('Time (sec)')
ylabel('x(t)')
title('Figure 10.12')
subplot(212),plot(T*n,y);  % output of ideal reconstructor y(t)
xlabel('Time (sec)')
ylabel('y(t)')
subplot(111)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?