how to covert carrier to noise ratio (CNR) to Eb/No in matlab? if CNR=20db. thanks
5 次查看(过去 30 天)
显示 更早的评论
how to covert carrier to noise ratio (CNR) to Eb/No in matlab? if CNR=20db. thanks
0 个评论
采纳的回答
KALYAN ACHARJYA
2018-4-11
编辑:KALYAN ACHARJYA
2018-4-11
%Data not sufficient in question, bitrate & Noise Bandwidth
CNR=20; %Given in question
B=input('Enter the Bitrate ');
R=input('Enter Noise Bandwidth ');
c=B/R;
Eb_No=CNR*c;
fprintf('Ratio of Energy per Bit (Eb) to the Spectral Noise Density (No) is %f',Eb_No);
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Propagation and Channel Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!