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.

Prototype filter for polyphase implementation

Status
Not open for further replies.

anmol

Newbie level 6
Joined
Sep 2, 2005
Messages
11
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,283
Location
Bangalore
Activity points
1,336
I want to design a prototype filter for polyphase implementation. The polyphase uses FFT to analyze the spectrum. How should i go around the problem?
 

I am not sure if you are still looking for the answer or not, but if you are then program this in matlab, you should get a fairly good prototype filter:

Code:
t = 1;
N = number of coefficients you want for your filter (has to be an odd number)
M = number of channels (eg:4,8,16,etc)
h = zeros(1,N);

for i = -1:1/((N-1)/2):1              
    if and(i>=(-1/M),i<=(1/M))
        h(t) = sqrt((cos(i*M*pi)+1)/2);
    else
        h(t) = 0;
    end
    t = t+1;
end

 H = real(fftshift(ifft(ifftshift(h))));
fvtool(H);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top