diff options
Diffstat (limited to '992/CH8/EX8.3')
-rwxr-xr-x | 992/CH8/EX8.3/Ex8_3.sce | 12 | ||||
-rwxr-xr-x | 992/CH8/EX8.3/ex8_3.txt | 12 | ||||
-rwxr-xr-x | 992/CH8/EX8.3/ex8_3ans.txt | 4 |
3 files changed, 28 insertions, 0 deletions
diff --git a/992/CH8/EX8.3/Ex8_3.sce b/992/CH8/EX8.3/Ex8_3.sce new file mode 100755 index 000000000..4f4b62475 --- /dev/null +++ b/992/CH8/EX8.3/Ex8_3.sce @@ -0,0 +1,12 @@ +
+//Exa:8.3
+clc;
+clear;
+close;
+//Given:
+Bw=25;//in KHz
+Nr=2*Bw*1000;
+printf("\n Nyquist sampling rate = %f samples/seconds",Nr/1000);
+br=8;//bits
+Ne=br*Nr;
+printf("\n Transmitted elements = %f elements",Ne);
\ No newline at end of file diff --git a/992/CH8/EX8.3/ex8_3.txt b/992/CH8/EX8.3/ex8_3.txt new file mode 100755 index 000000000..860aaa6a2 --- /dev/null +++ b/992/CH8/EX8.3/ex8_3.txt @@ -0,0 +1,12 @@ +//Caption:Program to calculate nyquist sampling rate,elements transmitted.
+//Exa:8.3
+clc;
+clear;
+close;
+//Given:
+Bw=25;//in KHz
+Nr=2*Bw*1000;
+printf("\n Nyquist sampling rate = %f samples/seconds",Nr/1000);
+br=8;//bits
+Ne=br*Nr;
+printf("\n Transmitted elements = %f elements",Ne);
\ No newline at end of file diff --git a/992/CH8/EX8.3/ex8_3ans.txt b/992/CH8/EX8.3/ex8_3ans.txt new file mode 100755 index 000000000..91153e92f --- /dev/null +++ b/992/CH8/EX8.3/ex8_3ans.txt @@ -0,0 +1,4 @@ +
+ Nyquist sampling rate = 50.000000 samples/seconds
+ Transmitted elements = 400000.000000 elements
+ Execution done.
\ No newline at end of file |