How Can You Compute the Inverse DFT Using a DFT Algorithm?

  • Context: Undergrad 
  • Thread starter Thread starter seamie456
  • Start date Start date
  • Tags Tags
    Dft Inverse
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
seamie456
Messages
1
Reaction score
0
How does one edit the input sequence and the results so as to be able to calculate the inverse dft with the dft algorthm?
 
Mathematics news on Phys.org
if you define the DFT by:
[tex] X_k = \sum_{n=0}^{N-1} x_n e^{-i 2 \pi \frac{k}{N} n} = DFT\left(x\right)_k[/tex]
and it inverse DFT by
[tex] x_n = \frac{1}{N} \sum_{k=0}^{N-1} X_k e^{+i 2 \pi \frac{k}{N} n} = IDFT\left(X\right)_n,[/tex]
then the way to get [itex]x_n[/itex] from [itex]X_k[/itex] using a DFT would be something like,
[tex] x_n = \frac{1}{N} \left(\sum_{k=0}^{N-1} X_k^* e^{-i 2 \pi \frac{k}{N} n}\right)^* = \frac{1}{N} \left( DFT \left( X^* \right) \right)_n^*[/tex].
where the asterix represents conjugation. Does that make sense?

jason