diff options
Diffstat (limited to '116/CH11/EX11.2')
-rwxr-xr-x | 116/CH11/EX11.2/exa11_2.sce | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/116/CH11/EX11.2/exa11_2.sce b/116/CH11/EX11.2/exa11_2.sce index 665583926..f8a703198 100755 --- a/116/CH11/EX11.2/exa11_2.sce +++ b/116/CH11/EX11.2/exa11_2.sce @@ -1,19 +1,17 @@ -
-//Caption:Program to determine the theoretical maximum data rate of a prefectly equalized voiceband modem
-
-//Example 11.2
-
-//Page 513
-
-disp('The signal-to-quantizing-noise ratio(SQR) is given in chap3 to be on the order of 36dB, which corresponds to power ratio of 3981.')
-
-disp('Using this value in Shannon theorem for the theoretical capacity of a channel yield,')
-
-SNR=3981
-
-C=3100*[log2(1+SNR)]
-
-disp("Result")
-
-disp("data rate = 37 kbps")
-
+ +//Example 11.2 + +//Page 513 + +disp('The signal-to-quantizing-noise ratio(SQR) is given in chap3 to be on the order of 36dB, which corresponds to power ratio of 3981.') + +disp('Using this value in Shannon theorem for the theoretical capacity of a channel yield,') + +SNR=3981 + +C=3100*[log2(1+SNR)] + +disp("Result") + +disp("data rate = 37 kbps") + |