Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Half Band IIR Filter Design using MATLAB

Status
Not open for further replies.

megs05

Newbie level 1
Joined
Mar 5, 2013
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,289
Hi,

I am referring to the paper "Half Band IIR Filter Design using MATLAB" by Lutovac and Mili, to design an IIR HB filter, but I am not getting the results as expected.

An example in the paper:
Fp = .22;
Fs = 0.5 - Fp;
Rp = 0.01;
As = 46;
if(-10*log10(1-(10^(-Rp/10)))>As)
HBAs = -10*log10(1-(10^(-Rp/10)));
else
HBAs = As;
end
HBRp = 10*log10(1+(1/((10^(HBAs/10))-1)));

Order = ellipord(2*Fp, 2*Fs, HBRp, HBAs);
[z,p,k] = ellip(Order+1,HBRp,HBAs,2*Fp);
zplane(zl,pl)

the poles which should be on imag axis (as per HB property) are not all on imag axis and hence they can not be realized as a sum of two all pass filters (equation 5 in the paper). Can some one tell me if this is expected? and if yes then how can I get the filter to be a sum of two all pass filters?

Thanks,
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top