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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
//isallpass Determine whether filter is allpass
//Calling Syntax
//flag = isallpass(b,a)
//flag = isallpass(sos)
//flag = isallpass(...,tol)
// b and a are the vectors containing zero and pole coefficients respectively
//tol, tolerance is used to determine when two numbers are close enough to be considered equal.
//Author: Parthasarathi Panda
//parthasarathipanda314@gmail.com
function isall=isallpass(varargin)
[nargout,nargin]=argn();
if (nargin==2) then
v=size(varargin(1));
if (v(2)~=6) | (v(2)==6 & v(1)==1) then
a=varargin(1);
b=varargin(2);
if type(a)~=1 | type(b)~=1 then
error('check input type');
end
v=size(a);
if length(v)>2 then
error('check input dimension');
end
v=size(b);
if length(v)>2 then
error('check input dimension');
end
[n,k]=size(a);
if k==1 then
a=a';
elseif n~=1 then
error('check input dimension');
end
[n,k]=size(b);
if k==1 then
b=b';
k=n;
elseif n~=1 then
error('check input dimension');
end
tol=0;
else
sos=varargin(1);
if type(sos)~=1 then
error('check input dimension');
end
v=size(sos);
if length(v)>2 then
error('check input dimension');
end
if v(2)~=6 then
error('no. of columns must be 6');
end
a=1;b=1;
for i=[1:v(1)]
a=convol(a,sos(1:3));
b=convol(b,sos(4:6));
end
tol=varargin(3);
if (type(tol)~=1) then
error('check input type');
end
if (size(tol)~=[1,1]) then
error('check input dimension');
end
end
elseif (nargin==1) then
tol=0;
sos=varargin(1);
if type(sos)~=1 then
error('check input dimension');
end
v=size(sos);
if length(v)>2 then
error('check input dimension');
end
if v(2)~=6 then
error('no. of columns must be 6');
end
a=1;b=1;
for i=[1:v(1)]
a=convol(a,sos(1:3));
b=convol(b,sos(4:6));
end
elseif (nargin==3) then
a=varargin(1);
b=varargin(2);
if type(a)~=1 | type(b)~=1 then
error('check input type');
end
v=size(a);
if length(v)>2 then
error('check input dimension');
end
v=size(b);
if length(v)>2 then
error('check input dimension');
end
[n,k]=size(a);
if k==1 then
a=a';
elseif n~=1 then
error('check input dimension');
end
[n,k]=size(b);
if k==1 then
b=b';
k=n;
elseif n~=1 then
error('check input dimension');
end
tol=varargin(3);
if (type(tol)~=1) then
error('check input type');
end
if (size(tol)~=[1,1]) then
error('check input dimension');
end
else
error('no. of inputs not matching');
end
poly_a=inv_coeff(a($:-1:1));
poly_b=inv_coeff(b);
gc=gcd([poly_a,poly_b]);
[r,den]=pdiv(poly_b,gc);
[r,num]=pdiv(poly_a,gc);
poles=roots(den);
zerosinv=roots(num);
//sorting the zeros and poles to facilitate comparision
[l,k]=gsort(imag(poles));
poles=poles(k);
[l,k]=gsort(real(poles));
poles=poles(k);
[l,k]=gsort(imag(poles));
zerosinv=zerosinv(k);
[l,k]=gsort(real(poles));
zerosinv=zerosinv(k);
maxerr=max((poles-conj(zerosinv)).*conj(poles-conj(zerosinv)));
if zerosinv==[] & poles==[] then
isall=1;
elseif maxerr<=tol then
isall=1;
else
isall=0;
end
endfunction
|