home *** CD-ROM | disk | FTP | other *** search
- function [order,wn] = cheb1ord(wp,ws,rp,rs,opt)
- %CHEB1ORD Chebyshev type I filter order selection.
- % [N, Wn] = CHEB1ORD(Wp, Ws, Rp, Rs) returns the order N of the
- % lowest order digital Chebyshev type I filter that loses no
- % more than Rp dB in the passband and has at least Rs dB of
- % attenuation in the stopband. The passband runs from 0 to
- % Wp and the stopband extends from Ws to 1.0, the Nyquist
- % frequency. CHEB1ORD also returns Wn, the Chebyshev
- % natural frequency to use with CHEBY1 to achieve the
- % specifications.
- % [N, Wn] = CHEB1ORD(Wp, Ws, Rp, Rs, 's') does the computation
- % for an analog filter.
- % See also CHEBY1, BUTTORD, ELLIPORD, and CHEB2ORD.
-
- % References: Rabiner and Gold, p 241.
-
- % L. Shure 6-9-88
- % Updated, 11-13-92 T. Krauss
- % Copyright (c) 1988, 1992 by the MathWorks, Inc.
-
- if nargin == 4
- opt = 'z';
- elseif nargin == 5
- if ~strcmp(opt,'z') & ~strcmp(opt,'s')
- error('Invalid option for final argument.');
- end
- end
- np1 = length(wp);
- ns1 = length(ws);
- if (np1 ~= ns1)
- error('The frequency vectors must both be the same length.')
- end
- ftype = 2*(np1 - 1);
- if wp(1) < ws(1)
- ftype = ftype + 1; % low (1) or reject (3)
- else
- ftype = ftype + 2; % high (2) or pass (4)
- end
-
- % first, prewarp frequencies from digital (unit circle) to analog (imag. axis):
- if strcmp(opt,'z') % digital
- WPA=tan(pi*wp/2);
- WSA=tan(pi*ws/2);
- else % don't have to if analog already
- WPA=wp;
- WSA=ws;
- end
-
- % next, transform to low pass prototype with passband edge of 1 and stopband
- % edges determined by the following: (see Rabiner and Gold, p.258)
- if ftype == 1 % low
- WA=WSA/WPA;
- elseif ftype == 2 % high
- WA=WPA/WSA;
- elseif ftype == 3 % stop
- WA=(WSA*(WPA(1)-WPA(2)))./(WSA.^2 - WPA(1)*WPA(2));
- elseif ftype == 4 % pass
- WA=(WSA.^2 - WPA(1)*WPA(2))./(WSA*(WPA(1)-WPA(2)));
- end
-
- % find the minimum order cheby. type 1 filter to meet the more demanding spec:
- WA=min(abs(WA));
- order=ceil(acosh(sqrt((10^(.1*abs(rs))-1)/(10^(.1*abs(rp))-1)))/acosh(WA));
- % ref: M.E. Van Valkenburg, "Analog Filter Design", p.232, eqn 8.39
-
- % natural frequencies are simply the given band-edges:
- wn=wp;
-
-