tapering a clipped Waveform for Fourier analysis??? Need help!

7 ビュー (過去 30 日間)
Dan
Dan 2012 年 10 月 19 日
Hello all, I have been working on some wave spectrum analysis using the fast fourier transform (FFT). For my analysis I need to only take the initial peak (first period or 1.5 period) of my waveform. However by clipping the waveform (down to this initial peak)high frequencies are added to the fft spectrum. I had been advised to eliminate this problem to taper the waveform out instead of clipping it, or maybe to clip then taper the clipped waveform???
Unfortunately I don t know how to go about this (Sad)...
Can anyone please help on how to do this? or if there is a better way to get around this problem???
Thank you so much for your time and help!

採用された回答

Dr. Seis
Dr. Seis 2012 年 10 月 19 日
編集済み: Dr. Seis 2012 年 10 月 19 日
Check out the help pages for window
Example:
t = 0:0.1:10;
y = randn(size(t));
plot(t,y,t,window(@hamming,numel(t)),t,window(@hamming,numel(t)).*y');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by