Question on Discrete Cosine Transform FFT

Hello Team,
My Matlab code calculate a vector signal. When I plot the signal, it looks like the attached signal1.
After I apply fft, the signal becomes like signal2. It does look correct. Am I right?
Thanks

7 Comments

Bruno Luong
Bruno Luong on 20 Oct 2018
Edited: Bruno Luong on 20 Oct 2018
Uh yes. But this seems to be DFT (from FFT) not cosine transform
Yea, I have used fft:
horFourier = fft(hProfile); plot(horFourier);
Why mention "Discrete Cosine Transform" in the subject? DCT is not DFT.
What should I do to have a periodic DFT signal?
This is the image vector
and this is the results after DFT is applied.
In my case, I did not get the same. What should I do?
It seems the graph is
abs(fft(data))
because fft returns complex data when when you plot it without ABS, you get the points in complex plane, and not amplitude vs frequency.
Take a look at the documents of functions PLOT, FFT, FFTSHIFT
Thank you Bruno, that was really helpful. Also thanks for the documents you have advised.

Sign in to comment.

Answers (0)

Asked:

on 20 Oct 2018

Commented:

on 20 Oct 2018

Community Treasure Hunt

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

Start Hunting!