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

📄 ex3p13.m

📁 关于数字信号处理的一些matlab例程
💻 M
字号:
w=[0:1:500]*pi/500;
H=exp(j*w)./(exp(j*w)-0.9*ones(1,501));
magH=abs(H);angH=angle(H);
subplot(2,1,1);plot(w/pi,magH);grid;
xlabel('frequency in units of pi');ylabel('|H|');
title('Magnitude Response');
subplot(2,1,2);plot(w/pi,angH/pi);grid;
xlabel('frequency in units of pi');ylabel('phase in pi Radians');
title('Phase Response');

⌨️ 快捷键说明

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