blob: 6385f0ade70466d8915a01fa0c98e8985aaaa30a (
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
27
28
29
30
31
|
//Caption:Program to determine the implementaton complexity of a 131,072 channel
//Example 5.5
//Page 261
disp('The space switch can be designed bt take the first space stage. A value of 32 is chosen as a convenient binary number.')
n=32//binary w.r.t (N/2)^2
k=27//determined as a blocking probability of 0.0015
//Refer equations 5.18 and 5.19
Nx=[2*1024*27]+[27+(32^2)]
Nx=[2*1024*27]+[27*(32^2)]
Nbx=[2*27*128*32*5]+{27*128*32*5}
Nbt=[2*1024*128*8]
Nbtc=[2*1024*128*7]
cmplx=[Nx+{(Nbx+Nbt+Nbtc)/100}]
//Result
//Complexity is 138,854 equivalent crosspoint.
|