diff options
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 |