필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to interpret the image made by using FFT function directly

조회 수: 1 (최근 30일)
星辰 慕
星辰 慕 2020년 9월 28일
마감: MATLAB Answer Bot 2021년 8월 20일
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

답변 (1개)

Ameer Hamza
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))

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by