How to find occupied bandwidth
4 次查看(过去 30 天)
显示 更早的评论
Greetings,
I am trying to estimate the occupied bandwidth of the measured signal. After post-processing, I arrived to the spectrum estimate "powerSpectrum.mat" and frequencies "freq.mat" (both files are attached).
load powerSpectrum.mat powerSpectrum
load freq.mat freq
figure
obw(powerSpectrum,freq);
The returned occupied bandwidth does not quite make sense to me. Is there anything that I did not do? or did wrong?
I would appreciate your help.
2 个评论
采纳的回答
Greg Dionne
2016-6-29
编辑:Greg Dionne
2016-6-29
You have a fair amount of noise power, which is swamping your measurement. To see what I mean try (assuming your spectrum is a PSD -- you were using the PSD syntax above):
plot(freq/1e9, cumsum(powerSpectrum)./mean(diff(freq)))
xlabel('Freq (GHz)')
ylabel('Cumulative Power (Watts)')
Note the large slope in cumulative power in the noise regions.
If you want to ignore the noise, try restricting the frequency band of interest. Something like:
obw(powerSpectrum, freq, [4.75 9]*1e9, 99)
Something looks awry in the band between 8.5 GHz - 9 GHz. Is this a real world signal?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Parametric Spectral Estimation 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!