summaryrefslogtreecommitdiff
path: root/116/CH5/EX5.5/exa5_5.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /116/CH5/EX5.5/exa5_5.sce
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '116/CH5/EX5.5/exa5_5.sce')
-rwxr-xr-x116/CH5/EX5.5/exa5_5.sce60
1 files changed, 30 insertions, 30 deletions
diff --git a/116/CH5/EX5.5/exa5_5.sce b/116/CH5/EX5.5/exa5_5.sce
index 6385f0ade..3c720dd34 100755
--- a/116/CH5/EX5.5/exa5_5.sce
+++ b/116/CH5/EX5.5/exa5_5.sce
@@ -1,31 +1,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.
+
+
+
+//Example 5.5
+
+//Page 261
+
+
+
+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.
\ No newline at end of file