1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) INRIA - F.D
// Copyright (C) INRIA - 1996 - C. Bunks
//
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
function [zers,pols,gain]=zpch2(n,A,omegar)
//[zers,pols,gain]=zpch2(n,A,omegar)
//Poles and zeros of a type 2 Chebyshev analog filter
//gain is the gain of the filter
//H(s)=gain*poly(zers,'s')/poly(pols,'s')
// n :Filter order
// A :Attenuation in stop band (A>1)
// omegar :Cut-off frequency in rd/s
// zers :Resulting filter zeros
// pols :Resulting filter poles
// gain :Resulting filter gain
//
//!
un=ones(1,n);
v=%pi/(2*n)*(1:2:2*n-1);
w=exp(%i*v);
cosine=real(w);
sine=imag(w);
n2=int(n/2);
if n==2*n2 then,
zers=%i*omegar*un./cosine;
else,
zers=%i*omegar*un(1:n-1)./[cosine(1:n2),cosine(n2+2:n)];
end,
Gamma=(A+sqrt(A*A-1))**(1/n);
alpha=-((Gamma-1/Gamma)/2)*sine;
Beta=((Gamma+1/Gamma)/2)*cosine;
normal=alpha.*alpha+Beta.*Beta;
pols=omegar*(alpha-%i*Beta)./normal;
gain=abs(real(prod(pols)/prod(zers)));
endfunction
|