FFT of vibration data

3 ビュー (過去 30 日間)
gagan sharma
gagan sharma 2020 年 12 月 22 日
編集済み: Walter Roberson 2020 年 12 月 22 日
I have vibration data in time domain and i m unable to do FFT of this. please guide me
sampling rate 800 sample/sec
thanks

採用された回答

Adeel Ashraf
Adeel Ashraf 2020 年 12 月 22 日
編集済み: Walter Roberson 2020 年 12 月 22 日
Fs = 800; % sampling rate of 1000 Hz
t = 0:1/Fs:1-1/Fs;
x = ad2;
xdft = fft(x);
xdft = xdft(1:length(x)/2+1);
DF = Fs/length(x); % frequency increment
freqvec = 0:DF:Fs/2;
plot(freqvec,abs(xdft))
I hope this can work

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFourier Analysis and Filtering についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by