How can i take the FFT of this signal. Please any one can help me.
2 ビュー (過去 30 日間)
古いコメントを表示
CORR=(X(:,1)-mean(X(:,1)))/g; %Shift of signal to zero value
%Plot Corrected signal in Time Domain
figure(3)
plot(t,CORR);
title('Corrected signal in Time Domain');
xlabel('Time [s]');
ylabel('Acceleration [cm/s^2]');
5 件のコメント
Divija Aleti
2020 年 10 月 28 日
Can you attach the excel sheet 'sujith.xlsx' along with your entire code so we can understand better ?
Mathieu NOE
2020 年 10 月 28 日
Hi
I think it's just because there is an error in your code :
xdft=fft(t,CORR);
to be replaced by
xdft=fft(CORR,N);
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Transforms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!