Trying to transform data into FFT format

조회 수: 9 (최근 30일)
Mason Condren
Mason Condren 2022년 8월 24일
댓글: Mason Condren 2022년 8월 24일
I have been trying to convert data into FFT format, but it does not look like a wave in the graph. The columns I am calling to match the first plotted diagram. The data does not look like a wave up close as it should. I am assuming that is the problem.
%T = xlsread('Baseline.xlsx');
t = T(:,1);
x_t = T(:,5);
t=t-t(1);
plot(t,x_t);
S = [t,x_t]
X = fft(S)
plot(X)
  댓글 수: 2
Walter Roberson
Walter Roberson 2022년 8월 24일
Why are you taking a fourier transform of your time variable? Why does your time variable have duplicate values? Why does the other column contain nan or inf?
Mason Condren
Mason Condren 2022년 8월 24일
From muy understanding the fft command is for a function. I only have data. So, I
converted the data into a 2x* matrix to FFT it. I do not have a good understanding of the command when it comes to raw data.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by