what is order of Root raise Cosine filter mention below and how can order of RRC Filter can be adjusted according to requirements?
2 views (last 30 days)
Show older comments
rolloff = 0.25; % Rolloff factor span = 6; % Filter span in symbols sps = 4; % Samples per symbol rrcFilter = rcosdesign(rolloff, span, sps); txSig = upfirdn(modData, rrcFilter, sps); EbNo = 7; snr = EbNo + 10*log10(k) - 10*log10(sps); rxSig = awgn(txSig, snr, 'measured'); rxFilt = upfirdn(rxSig, rrcFilter, 1, sps); rxFilt = rxFilt(span+1:end-span);
0 Comments
Answers (0)
See Also
Categories
Find more on Filtering in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!