Decimation in Time Algorithm क्या होता है? | DIT FFT in Hindi

Decimation in Time Algorithm क्या होता है? | DIT FFT in Hindi


Decimation in Time (DIT) FFT Algorithm क्या है?

Decimation in Time (DIT) एक प्रकार का Fast Fourier Transform (FFT) Algorithm है, जो Discrete Fourier Transform (DFT) को efficiently compute करता है। इसमें input signal को time-domain में recursively divide किया जाता है।

यह एक Radix-2 FFT Algorithm का हिस्सा है जिसमें N = 2^k होना चाहिए (यानी input length power of 2)।


DIT FFT की विशेषताएँ (Features)

  1. Divide-and-conquer approach का उपयोग करता है।
  2. Input sequence को bit-reversed order में रखा जाता है।
  3. Computational complexity O(N log N) होती है।
  4. Stage-wise processing और butterfly structure का उपयोग होता है।

DIT FFT Algorithm के Steps

  1. Step 1: Input को bit-reversed order में arrange करें।
  2. Step 2: Divide करें even और odd indexed elements में।
  3. Step 3: Butterfly operations apply करें प्रत्येक stage में।
  4. Step 4: Twiddle factors (WNk) से multiply करें।
  5. Step 5: Output को frequency-domain में प्राप्त करें।

Butterfly Structure क्या होता है?

Butterfly computation दो input elements (say x1 और x2) को combine करता है:

  • Output 1 = x1 + WNk × x2
  • Output 2 = x1 - WNk × x2

यह operation प्रत्येक stage में recursively repeat होता है।


Twiddle Factor क्या होता है?

Twiddle Factor को WNk से दर्शाया जाता है:

WNk = e−j2πk/N

यह complex exponential होता है जो rotation (phase shift) को represent करता है।


DIT FFT के लिए आवश्यकताएँ

  1. Input sequence का length power of 2 होना चाहिए (e.g., 4, 8, 16...)
  2. Input को bit-reversed order में rearrange करें।
  3. Twiddle factors को प्रत्येक stage में सही order में उपयोग करें।

उदाहरण (Example)

मान लीजिए एक 4-point input sequence x(n) = [1, 2, 3, 4]

  1. Bit-reverse → [1, 3, 2, 4]
  2. Apply Butterfly in log₂4 = 2 stages
  3. Use W₄⁰, W₄¹, W₄², W₄³ values
  4. Final output X(k) मिलेगा: Frequency-domain में transformed data

Applications of DIT FFT

  1. Digital signal filtering
  2. Audio & speech processing
  3. Radar signal analysis
  4. Biomedical signal processing (e.g., ECG, EEG)

निष्कर्ष (Conclusion)

Decimation in Time (DIT) एक लोकप्रिय और प्रभावी algorithm है जो FFT को तेजी से calculate करने में मदद करता है। इसकी सरल butterfly structure और logarithmic speed इसे signal processing में ideal बनाती है।

Related Articles

Windowing Technique का उपयोग करके FIR Filter Design कैसे करें?

Windowing Tec...

Read More →

FIR Filters के Examples और उनकी Practical Applications हिंदी में

FIR Filters ...

Read More →

Windowing Techniques क्या हैं? Rectangular और अन्य Windows की पूरी जानकारी

Windowing Tec...

Read More →

Impulse Invariant और Bilinear Transformation क्या हैं?

Impulse Invar...

Read More →

IIR और FIR Digital Filters के Design Principles और Methods

IIR और FI...

Read More →