blob: d205b7c4168f65ae195179e94775356a93c48274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
|