blob: db328ccd09f0c0c95df84e53ce72ac42c68abf81 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Caption:Program to calculate number of stations.
//Exa:6.3
clc;
clear;
close;
//Given:
BWt=100;//in kHz
Fh=5;//in KHz
n=BWt/(2*Fh);
printf("\n\t number of stations = %f",n);
|