Trying to transform data into FFT format
10 ビュー (過去 30 日間)
古いコメントを表示

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
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?
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!