diff options
Diffstat (limited to '752/CH19/EX19.16.1/19_16_1.sce')
-rwxr-xr-x | 752/CH19/EX19.16.1/19_16_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/752/CH19/EX19.16.1/19_16_1.sce b/752/CH19/EX19.16.1/19_16_1.sce new file mode 100755 index 000000000..e2cbd088f --- /dev/null +++ b/752/CH19/EX19.16.1/19_16_1.sce @@ -0,0 +1,10 @@ +clc;
+//page no
+//problem no 19.16.1
+//Determination of overall C/N
+CNo_dB_U=88;CNo_dB_D=78;
+NoC_U=10^(-CNo_dB_U/10);
+NoC_D=10^(-CNo_dB_D/10);
+NoC=NoC_U+NoC_D;
+CNo_dB=10*log10(1/NoC);
+disp(CNo_dB,'The overall carrier to noise ratio is');
\ No newline at end of file |