diff options
Diffstat (limited to '992/CH6/EX6.4/ex6_4.txt')
-rwxr-xr-x | 992/CH6/EX6.4/ex6_4.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/992/CH6/EX6.4/ex6_4.txt b/992/CH6/EX6.4/ex6_4.txt new file mode 100755 index 000000000..711a838cb --- /dev/null +++ b/992/CH6/EX6.4/ex6_4.txt @@ -0,0 +1,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);
\ No newline at end of file |