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

📄 f_tipsfir.m

📁 digital signal processing常用工具箱
💻 M
字号:
% GUI module => g_fir
%
% User tips:
% 
% 1. All changes to edit box parameters are activated with
%    the Enter key.
%
%    F_0     = lower cutoff frequency
%    F_1     = upper cutoff frequency
%    B       = width of transition band
%    fs      = sampling frequency
%    delta_p = passband ripple
%    delta_s = stopband attenuation
%
% 2. Use the slider bar to adjust the FIR filter order m.
%
% 3. The User-defined filter type requires the name of an
%    M-file function that returns the desired amplitude 
%    response, A = ufun(f,fs).  When f is a vector of 
%    evaluation frequencies, A should be a vector of the 
%    same size. For example:
%
%    function A = ufun(f,fs)
%       u = f/fs;     
%       A = u ./ (1 + u.^2);
%
% 4. The Menu options include the following:
%
%    Method  => FIR filter design method
%    Save    => save x,y,a,b,fs in a MAT-file
%    Caliper => find coordinates of points on the plot
%    Print   => send screen to printer or a file
%    Help    => user tips and GUI module help
%    Exit    => return to calling program

⌨️ 快捷键说明

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