![]() |
|
|
|||||||
![]() |
VHDL - help need in the Radix 4 algorithm of 64 point. |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
hello friends,
w.r.t the design of fft/ifft in vhdl, there are several algorithms, here, i go for radix 4 algorithm, formulae behind the radix 4 DIF ifft y(l) = x(l) + x(l+N/2) + x(l+N/4) + x(l+3N/4); z(l) = (x(l) - x(l+N/2)+j(x(l+N/4) - x(l+3N/4))Wl; g(l) = (x(l) + x(l+N/2) - x(l+N/4) - x(l+3N/4))W2l; h(l) = (x(l) - x(l+N/2)-j(x(l+N/4) - x(l+3N/4))W3l; where Wl- twiddle factor. below mentioned the first stage of 64 point ifft using radix 4 formulae.. for l in 0 to 15 -- 64 to 16 point l varies frm 0 to 15 stage 1 yre(l) <= modre(l)+modre(l+32)+modre(l+16)+modre(l+4 yim(l) <= modim(l)+modim(l+32)+modim(l+16)+modim(l+4 yre(l+16) <= (modre(l) - modre(l+32) - modim(l+16) + modim(l+4 modre(l+4 yim(l+16) <= (modre(l) - modre(l+32) - modim(l+16) + modim(l+4 modre(l+4 yre(l+32) <= (-modre(l+16) - modre(l+4 modre(l+32))*stg1revalue(2*l) - (-modim(l+16) - modim(l+4 + modim(l+32))*stg1imvalue(2*l); yim(l+32) <= (-modre(l+16) - modre(l+4 modre(l+32))*stg1imvalue(2*l) + (-modim(l+16) - modim(l+4 + modim(l+32))*stg1revalue(2*l); yre(l+4 modre(l+32))*stg1revalue(3*l) - (-modre(l+16) + modre(l+4 - modim(l+32))*stg1imvalue(3*l); yim(l+4 modre(l+32))*stg1imvalue(3*l) + (-modre(l+16) + modre(l+4 - modim(l+32))*stg1revalue(3*l); end loop where the stg1revalue is look up table where i store the cos and sine values directly. and modre, modim are the input to the first stage and it will have modre(0 to 63) and modim(0 to 63).. after i getting 4 16 values , i go to 16 point one in that i got 4 4 point and then i finally go to 4 point. my question is, is this contribution to my 64 point is correct for the first stage or not? or pls give any suggestion regarding that and also give another way of approaching .. expecting ur reply. senthil.R senthil |
|
|
|
|
#2 |
|
Posts: n/a
|
Hello all,
I too am looking for the ways to implement 64 point IFFT and FFT in VHDL. I saw Ist stage implementation . Could anyone describe me full implementation and the corresponding sine and cosine values. Deepak deepak_ddn |
|
|
|
#3 |
|
Posts: n/a
|
Hello Deepak,
We have an app. Tyd-IP Code Generator which will give you FFT / IFFT (real and complex) VHDL...all synthesizable and easily readable with full comments. It also gives you testbenchs, test data, and simulator compile macros. Anything else you require ? Michael www.tyder.com "deepak_ddn" <> wrote in message news: lkaboutprogramming.com... > Hello all, > > I too am looking for the ways to implement 64 point IFFT and FFT in VHDL. I saw Ist stage implementation . Could anyone describe me full implementation and the corresponding sine and cosine values. > > Deepak > Michael Gallen |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| DVD Verdict reviews: MATCH POINT, DUMA, LATE SPRING: CRITERION COLLECTION, and more! | DVD Verdict | DVD Video | 0 | 05-22-2006 09:24 AM |
| DVD Verdict reviews: POINT BLANK, GUNNER PALACE, COACH CARTER, and more! | DVD Verdict | DVD Video | 0 | 07-11-2005 09:14 AM |
| Boorman's POINT BLANK : Special Edition!! | alex crouvier | DVD Video | 2 | 05-21-2004 01:58 AM |
| HD-DVD and DVD's future | Phil Riker | DVD Video | 68 | 09-28-2003 09:32 PM |
| Clint Kennedy: coward or loser? | Pikoro | A+ Certification | 9 | 08-28-2003 05:20 AM |