How do i add SNR to BPSK modulating signal?
4 ビュー (過去 30 日間)
古いコメントを表示
I want to add SNR = -20:2:30 in following code
function y = bpskModulator(x,sps)
persistent filterCoeffs
if isempty(filterCoeffs)
filterCoeffs = rcosdesign(0.35, 4, sps);
end
syms = pskmod(x,2); %% syms = 256x1
y = filter(filterCoeffs, 1, upsample(syms,sps)); %% upsampling like (sps-1) e.g 1 0 0 1 if sps = 3
end
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で BPSK についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!