Azzera filtri
Azzera filtri

What is the code for generating X(k) from given X(n) = [1 2 3 4] using Fast Fourier Transform?

9 visualizzazioni (ultimi 30 giorni)
There is this sequen of X(n) = [1 2 3 4] how do i get the X(k) using FFT function? What is the code for the function? And also the code for IFFT. Thank you

Risposta accettata

Chunru
Chunru il 5 Lug 2021
x = [1 2 3 4];
xfft = fft(x)
xfft =
10.0000 + 0.0000i -2.0000 + 2.0000i -2.0000 + 0.0000i -2.0000 - 2.0000i
y = ifft(xfft)
y = 1×4
1 2 3 4

Più risposte (0)

Categorie

Scopri di più su Fourier Analysis and Filtering in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by