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

📄 high.m

📁 滤波器的设计以及零极点对应频率响应分析
💻 M
字号:
function Hd = high%HIGH Returns a discrete-time filter object.%% M-File generated by MATLAB(R) 7.1 and the Signal Processing Toolbox 6.4.%% Generated on: 13-Oct-2008 16:53:50%% Equiripple Highpass filter designed using the FIRPM function.% All frequency values are in Hz.Fs = 100;  % Sampling FrequencyFstop = 0.4;             % Stopband FrequencyFpass = 0.5;             % Passband FrequencyDstop = 0.0001;          % Stopband AttenuationDpass = 0.057501127785;  % Passband Rippledens  = 20;              % Density Factor% Calculate the order from the parameters using FIRPMORD.[N, Fo, Ao, W] = firpmord([Fstop, Fpass]/(Fs/2), [0 1], [Dstop, Dpass]);% Calculate the coefficients using the FIRPM function.b  = firpm(N, Fo, Ao, W, {dens});Hd = b;% [EOF]

⌨️ 快捷键说明

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