Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to interpret the image made by using FFT function directly
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(1 个)
Ameer Hamza
2020-9-28
编辑:Ameer Hamza
2020-9-28
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))
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!