blob: 0ea7b47b4fcdc2289d33d9867cf5ecfdab0c8577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
Bc=1.25*10^6
Rb=9600
SrmindB=3
Srmin=10^(SrmindB/10)
Mmax=(Bc/Rb)*(1/Srmin)//maximum no. of simultaneous users
SrmaxdB=9
Srmax=10^(SrmaxdB/10)
Mmin=(Bc/Rb)*(1/Srmax)//minimum no. of simultaneous users
mprintf('A single cell IS-95 CDMA system can support from %i to %f users',Mmin,Mmax)
|