blob: 711a838cbfcd3aa891ebc8cd6615dbd30ebf6438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Caption:Program to calculate number of stations.
//Exa:6.4
clc;
clear;
close;
//Given:
Fmax=3;//in kHz
Bw=20;//in MHz
Bs=2*Fmax*1000;
n=(20*1000000)/Bs;
printf("\n\t number of stations = %f",n);
|