buttap.m

来自「GPS多路径效应的谱分析工具」· M 代码 · 共 23 行

M
23
字号
function [z,p,k] = buttap(n)%BUTTAP Butterworth analog lowpass filter prototype.%   [Z,P,K] = BUTTAP(N) returns the zeros, poles, and gain%   for an N-th order normalized prototype Butterworth analog%   lowpass filter.  The resulting filter has N poles around%   the unit circle in the left half plane, and no zeros.%%   See also BUTTER, CHEB1AP, CHEB2AP, ELLIPAP.%   Author(s): J.N. Little and J.O. Smith, 1-14-87%   	   L. Shure, 1-13-88, revised% Poles are on the unit circle in the left-half plane.z = [];p = exp(i*(pi*(1:2:n-1)/(2*n) + pi/2));p = [p; conj(p)];p = p(:);if rem(n,2)==1   % n is odd    p = [p; -1];endk = real(prod(-p));

⌨️ 快捷键说明

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