Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How to interpret the image made by using FFT function directly

1 visualización (últimos 30 días)
星辰 慕
星辰 慕 el 28 de Sept. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
For this kind of picture, I'd like to know what it means. I just import a column of data into Matlab, make this column as X, and then directly use y = FFT (x); plot (y) to get the image

Respuestas (1)

Ameer Hamza
Ameer Hamza el 28 de Sept. de 2020
Editada: Ameer Hamza el 28 de Sept. de 2020
Generally, fft of a real-values vector contain complex values. When you directly use
y = fft(x)
plot(y)
It just plots real components (x-axis) against complex components (y-axis). I am not sure if this gives any useful information. The usual way is to plot the abs() of the fft vector which gives information about frequency response.
y = fft(x)
plot(abs(y))

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by