how to covert carrier to noise ratio (CNR) to Eb/No in matlab? if CNR=20db. thanks
6 ビュー (過去 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!