blob: a0ab03b610a960488b3c8d3734824fbd3c3b9177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc;
// Chapter 2 Switched communication systems
//Example 2.3,page no 125
//given
C=6000//Tatol no of call in busy hour
SC=5000//no of subscribers
CR=C/SC//busy hour calling rate
mprintf('Busy hour calling rate is:%f \n',CR)
T=2.5/60//avarage duration of calls in hours
A=C*T//rate of traffic flow
mprintf('Rate of traffic flow is %f traffic unit ',A)
|