summaryrefslogtreecommitdiff
path: root/3446/CH2/EX2.1
diff options
context:
space:
mode:
Diffstat (limited to '3446/CH2/EX2.1')
-rw-r--r--3446/CH2/EX2.1/Ex2_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3446/CH2/EX2.1/Ex2_1.sce b/3446/CH2/EX2.1/Ex2_1.sce
new file mode 100644
index 000000000..d205b7c41
--- /dev/null
+++ b/3446/CH2/EX2.1/Ex2_1.sce
@@ -0,0 +1,15 @@
+// Exa 2.1
+// TO get Gos during BH(Busy Hour).
+
+clc;
+clear all;
+
+LC=10; //Lost calls
+CC=380; //Carried calls
+
+// soution
+OC=LC+CC; //Total offered calls
+//Gos=Blocking probability=(number of Lost calls/Total number of offered calls)
+Gos=LC/OC;
+printf('The Gos during busy hour is %f \n ', Gos);
+