summaryrefslogtreecommitdiff
path: root/116/CH10/EX10.3/exa10_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /116/CH10/EX10.3/exa10_3.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/CH10/EX10.3/exa10_3.sce')
-rwxr-xr-x116/CH10/EX10.3/exa10_3.sce39
1 files changed, 19 insertions, 20 deletions
diff --git a/116/CH10/EX10.3/exa10_3.sce b/116/CH10/EX10.3/exa10_3.sce
index 4dc91f9c9..033358474 100755
--- a/116/CH10/EX10.3/exa10_3.sce
+++ b/116/CH10/EX10.3/exa10_3.sce
@@ -1,21 +1,20 @@
-
-//Caption:Program to determine the probability that the delay of an ATM voice cell
-
-//Example 10.3
-
-//Page 488
-
-disp('Assuming the access link is 90% utilized on average.')
-
-disp('The queuing theory is provided in Chapter 12. It involves determining the probability that the DSI access queue contains enough cells to represent 10msec of transmission time')
-
-tm=[(53*8)/(192*8000)]
-
-disp('Therefore, 10 msec delay represents 10/0.276 = 36.2 cell times.')
-
-p=(0.9)*{%e^[-(1-0.9)*36.2]}//Refer to equation 12.25 in chap 12
-
-disp("Result")
-
-disp("P(>10msec) = 2.5% delay will be displayed by more than 10 msec ")
+
+
+//Example 10.3
+
+//Page 488
+
+disp('Assuming the access link is 90% utilized on average.')
+
+disp('The queuing theory is provided in Chapter 12. It involves determining the probability that the DSI access queue contains enough cells to represent 10msec of transmission time')
+
+tm=[(53*8)/(192*8000)]
+
+disp('Therefore, 10 msec delay represents 10/0.276 = 36.2 cell times.')
+
+p=(0.9)*{%e^[-(1-0.9)*36.2]}//Refer to equation 12.25 in chap 12
+
+disp("Result")
+
+disp("P(>10msec) = 2.5% delay will be displayed by more than 10 msec ")
\ No newline at end of file