How to find occupied bandwidth

조회 수: 7 (최근 30일)
kauerbach
kauerbach 2016년 6월 29일
댓글: kauerbach 2016년 6월 29일
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
Star Strider
Star Strider 2016년 6월 29일
How did you calculate ‘powerSpectrum’ and ‘freq’?
kauerbach
kauerbach 2016년 6월 29일
I applied easyspec.m to the measured waveform:

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Dionne
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?
  댓글 수: 1
kauerbach
kauerbach 2016년 6월 29일
Thank you for your reply.
This was a real signal before denoising. The notch between 8.5 and 9 GHz probably occurred because one of the cut-off frequencies fell in the middle of the ripple. You can see reminiscences of other ripples on the peak itself.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Parametric Spectral Estimation에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by