summaryrefslogtreecommitdiff
path: root/881/CH7/EX7.5/exa7_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /881/CH7/EX7.5/exa7_5.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '881/CH7/EX7.5/exa7_5.sce')
-rwxr-xr-x881/CH7/EX7.5/exa7_5.sce39
1 files changed, 39 insertions, 0 deletions
diff --git a/881/CH7/EX7.5/exa7_5.sce b/881/CH7/EX7.5/exa7_5.sce
new file mode 100755
index 000000000..4c0dadf82
--- /dev/null
+++ b/881/CH7/EX7.5/exa7_5.sce
@@ -0,0 +1,39 @@
+clc;
+//Example 7.5
+//Page No 260
+
+
+
+//Solution
+
+df=75;
+
+fm=15;
+
+//(a)
+
+disp("(a)The deviation ratio is found by substituting into equation 7-35(refer pgno), ");
+
+DR=df/fm;
+
+disp(DR,"DR = ");
+
+disp("From Table 7.3);
+
+B=2*(8*fm);
+
+disp('kHz',B,"B = ");
+
+//(b)
+
+disp("(b)For an 37.5kHz frequency deviation and modulating signal frequency fm=7.5, the modulation index is, ");
+
+m=37.5/7.5;
+
+disp(m,"m = ");
+
+disp("and the bandwidth is, ");
+
+b=2*(8*7.5);
+
+disp('kHz',b,"B = ");