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
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/367528/image.png)
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!