summaryrefslogtreecommitdiff
path: root/116/CH5/EX5.2/exa5_2.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.2/exa5_2.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.2/exa5_2.sce')
-rwxr-xr-x116/CH5/EX5.2/exa5_2.sce70
1 files changed, 35 insertions, 35 deletions
diff --git a/116/CH5/EX5.2/exa5_2.sce b/116/CH5/EX5.2/exa5_2.sce
index 065ab7a3b..91fc8d0cf 100755
--- a/116/CH5/EX5.2/exa5_2.sce
+++ b/116/CH5/EX5.2/exa5_2.sce
@@ -1,36 +1,36 @@
-//Caption:Program to determine the implementaton complexity of the TS switch
-
-//Example 5.2
-
-//Page 253
-
-//Refer to figure 5.19 on page 252
-
-N=80//Number of links
-
-Nc=24//Number of control words
-
-Nb1=7//Number of bits per control word
-
-Nb2=5//Number of bits per control word
-
-disp('The number of crosspoints in the space stage is')
-
-Nx=N^2
-
-disp('The total number of memory bits for the space stage control store is')
-
-Nbx=N*Nc*Nb1
-
-disp('The total number of memory bits for the time stage is')
-
-Nbt=(N*Nc*8)+(N*Nc*Nb2)
-
-disp('Thus the implementation complexity is ')
-
-Cmplx=Nx+[(Nbx+Nbt)/100]
-
-//Result
-
-//Complexity is 6784 equivalent crosspoint.
+
+
+//Example 5.2
+
+//Page 253
+
+//Refer to figure 5.19 on page 252
+
+N=80//Number of links
+
+Nc=24//Number of control words
+
+Nb1=7//Number of bits per control word
+
+Nb2=5//Number of bits per control word
+
+disp('The number of crosspoints in the space stage is')
+
+Nx=N^2
+
+disp('The total number of memory bits for the space stage control store is')
+
+Nbx=N*Nc*Nb1
+
+disp('The total number of memory bits for the time stage is')
+
+Nbt=(N*Nc*8)+(N*Nc*Nb2)
+
+disp('Thus the implementation complexity is ')
+
+Cmplx=Nx+[(Nbx+Nbt)/100]
+
+//Result
+
+//Complexity is 6784 equivalent crosspoint.
\ No newline at end of file