Effacer les filtres
Effacer les filtres

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

9 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Chunru
Chunru le 5 Juil 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

Plus de réponses (0)

Catégories

En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by