aeex4.m

来自「数字信号处理Matlab实现?中藕糯鞰atlab实现数字信号处理Matlab」· M 代码 · 共 15 行

M
15
字号
format short e                 % Set display formatn = 3;                         % Define orderWn = 1;                        % Prototype bandwidth Wo = 2*pi*150;                 % Specify new bandwidth[b,a] = butter(n,Wn,'s');      % Prototype coefficients[b1,a1] = lp2lp(b,a,Wo);       % Convert bandwidthb1                             % Numerator coefficients a1                             % Denominator coefficients         %% Check on previous results.%[b2,a2] = butter(n,Wo,'s');    % Determine coefficientsb2                             % Numerator coefficientsa2                             % Denominator coefficients          

⌨️ 快捷键说明

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