⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 41t.m

📁 包含50个数字信号处理方面的matlab程序
💻 M
字号:
Rp=3;Rs=20;
N=15;n=[0:1:N-1];%只需要改变N的值
wc=pi/4;
hd=ideal_lp(wc,N);
w_han=(hanning(N))';
h=hd.*w_han;
[db,mag,pha,grd,w]=freqz_m(h,1);
subplot(211);plot(w/pi,db);xlabel('w/pi');ylabel('db');
hold on;
subplot(212);plot(w/pi,pha);xlabel('w/pi');ylabel('pha');
hold on;
N=33;n=[0:1:N-1];%只需要改变N的值
wc=pi/4;
hd=ideal_lp(wc,N);
w_han=(hanning(N))';
h=hd.*w_han;
[db,mag,pha,grd,w]=freqz_m(h,1);
subplot(211);plot(w/pi,db,'r');xlabel('w/pi');ylabel('db');
subplot(212);plot(w/pi,pha,'r');xlabel('w/pi');ylabel('pha');

⌨️ 快捷键说明

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