Clear Filters
Clear Filters

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

9 views (last 30 days)
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

Accepted Answer

Chunru
Chunru on 5 Jul 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

More Answers (0)

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!