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

📄 p3_6.m

📁 数字信号处理实验指导书MATLAB版程序电子版
💻 M
字号:
% Program P3_6% Time Reversal Property of DTFTclf;w = -pi:2*pi/255:pi;num = [1 2 3 4];L = length(num)-1;h1 = freqz(num, 1, w);h2 = freqz(fliplr(num), 1, w);h3 = exp(w*L*i).*h2;subplot(2,2,1)plot(w/pi,abs(h1));gridtitle('Magnitude Spectrum of Original Sequence')subplot(2,2,2)plot(w/pi,abs(h3));gridtitle('Magnitude Spectrum of Time-Reversed Sequence')subplot(2,2,3)plot(w/pi,angle(h1));gridtitle('Phase Spectrum of Original Sequence')subplot(2,2,4)plot(w/pi,angle(h3));gridtitle('Phase Spectrum of Time-Reversed Sequence')

⌨️ 快捷键说明

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