how to covert carrier to noise ratio (CNR) to Eb/No in matlab? if CNR=20db. thanks
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
usman ali
el 11 de Abr. de 2018
Editada: KALYAN ACHARJYA
el 11 de Abr. de 2018
how to covert carrier to noise ratio (CNR) to Eb/No in matlab? if CNR=20db. thanks
0 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 11 de Abr. de 2018
Editada: KALYAN ACHARJYA
el 11 de Abr. de 2018
%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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Propagation and Channel Models en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!