summaryrefslogtreecommitdiff
path: root/992/CH8/EX8.3
diff options
context:
space:
mode:
Diffstat (limited to '992/CH8/EX8.3')
-rwxr-xr-x992/CH8/EX8.3/Ex8_3.sce12
-rwxr-xr-x992/CH8/EX8.3/ex8_3.txt12
-rwxr-xr-x992/CH8/EX8.3/ex8_3ans.txt4
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