summaryrefslogtreecommitdiff
path: root/992/CH3/EX3.8
diff options
context:
space:
mode:
Diffstat (limited to '992/CH3/EX3.8')
-rwxr-xr-x992/CH3/EX3.8/Ex3_8.sce10
-rwxr-xr-x992/CH3/EX3.8/ex3_8.txt10
-rwxr-xr-x992/CH3/EX3.8/ex3_8ans.txt3
3 files changed, 23 insertions, 0 deletions
diff --git a/992/CH3/EX3.8/Ex3_8.sce b/992/CH3/EX3.8/Ex3_8.sce
new file mode 100755
index 000000000..dbda7f453
--- /dev/null
+++ b/992/CH3/EX3.8/Ex3_8.sce
@@ -0,0 +1,10 @@
+
+//Exa:3.8
+clc;
+clear;
+close;
+//Given:
+Bw=150;//in KHz
+mod_f=10;//in KHz
+dev=Bw/2 - mod_f;
+printf("\n deviation to be used = %f KHz",dev); \ No newline at end of file
diff --git a/992/CH3/EX3.8/ex3_8.txt b/992/CH3/EX3.8/ex3_8.txt
new file mode 100755
index 000000000..cda061ecb
--- /dev/null
+++ b/992/CH3/EX3.8/ex3_8.txt
@@ -0,0 +1,10 @@
+//Caption:Program to calculate deviation to be used.
+//Exa:3.8
+clc;
+clear;
+close;
+//Given:
+Bw=150;//in KHz
+mod_f=10;//in KHz
+dev=Bw/2 - mod_f;
+printf("\n deviation to be used = %f KHz",dev); \ No newline at end of file
diff --git a/992/CH3/EX3.8/ex3_8ans.txt b/992/CH3/EX3.8/ex3_8ans.txt
new file mode 100755
index 000000000..69fb70630
--- /dev/null
+++ b/992/CH3/EX3.8/ex3_8ans.txt
@@ -0,0 +1,3 @@
+
+ deviation to be used = 65.000000 KHz
+ Execution done.