diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /116/CH7/EX7.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '116/CH7/EX7.3')
-rwxr-xr-x | 116/CH7/EX7.3/exa7_3.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/116/CH7/EX7.3/exa7_3.sce b/116/CH7/EX7.3/exa7_3.sce new file mode 100755 index 000000000..775b3085c --- /dev/null +++ b/116/CH7/EX7.3/exa7_3.sce @@ -0,0 +1,27 @@ +
+//Caption:Program to determine the minimum and maximum input channel rate accommodated by an M12 multiplexer
+
+//Example 7.3
+
+//Page 354
+
+disp("The maximum information rate per channel is determined as")
+
+Imax=[(6.312*288)/1176]
+
+disp('The minimum information rate per channel is determined as')
+
+Imin=[(6.312*287)/1176]
+
+disp('Since there are three possible combinations of two errors in the C bits, the probability of misinterpreting an S bit is')
+
+3*(10^-6)^2
+
+1176/6.312//duration of each master frame
+
+[(3*10^-12)/(186*10^-6)]
+
+//Result
+
+//0.016*10^-6 misframes per second
+
\ No newline at end of file |