diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /116/CH10/EX10.3/exa10_3.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-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-x | 116/CH10/EX10.3/exa10_3.sce | 39 |
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 |