pwelch finds two-sided PSD at carrier frequency
조회 수: 7 (최근 30일)
이전 댓글 표시
I have the signal rt=xt+it, where x and i are BPSK-modulated rectangular pulse train transmitted at carrier frequency fx and fi. When I try to find the PSD of it alone using the pwelch function like so
[psdi,fri] = pwelch(it,[],[],(fx-5*W:10^6:fx+5*W),fs);
where W and fs are the signal bandwidth and sampling rate of xt, I get a mirrored PSD around fx, which is not what I expect. I expect the mirroring to happen at -fi. Why is this happening?
댓글 수: 0
채택된 답변
dpb
2022년 9월 19일
"...I get a mirrored PSD around fx, ... Why...?"
Because in
[psdi,fri] = pwelch(it,[],[],(fx-5*W:10^6:fx+5*W),fs);
you specifically asked for the two-sided estimates at the frequencies fx +/- 5*W; that's centered about fx, not fi
Change fx to fi and joy shall ensue...
댓글 수: 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!