Window correction using pwelch function
3 次查看(过去 30 天)
显示 更早的评论
For what I read Windowing the data introduces errors. Can anyone clarify me please what correction should I do (if any is needed) to calculate the psd and the power (see SpectrumType below) using the pwelch function.
What I have done:
N = length(Ydata);
wlen= rectwin(Npoints;);
nfft = Npoints; % (e.g. 256, 1024, etc) % nfft = 2^(nextpow2(N))
SpectrumType = 'psd'; % or 'power'
Noverlap = [];
[Pxx,f] = pwelch(Ydata,wlen,Noverlap,nfft,Fs,SpectrumType);
If any correction is needed can you provide me please the correcttion values for this windows.
rectwin
hamming
hanning
bartlett
blackman
kaiser
chebwin
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Estimation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!