blob: d9527962ab3c0ba1dd89982de2efbdc238fd4914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//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
|