diff options
Diffstat (limited to '992/CH6/EX6.4')
-rwxr-xr-x | 992/CH6/EX6.4/ex6_4.sce | 11 | ||||
-rwxr-xr-x | 992/CH6/EX6.4/ex6_4.txt | 11 | ||||
-rwxr-xr-x | 992/CH6/EX6.4/ex6_4ans.txt | 2 |
3 files changed, 24 insertions, 0 deletions
diff --git a/992/CH6/EX6.4/ex6_4.sce b/992/CH6/EX6.4/ex6_4.sce new file mode 100755 index 000000000..881738d63 --- /dev/null +++ b/992/CH6/EX6.4/ex6_4.sce @@ -0,0 +1,11 @@ +
+//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 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 diff --git a/992/CH6/EX6.4/ex6_4ans.txt b/992/CH6/EX6.4/ex6_4ans.txt new file mode 100755 index 000000000..52796cdd3 --- /dev/null +++ b/992/CH6/EX6.4/ex6_4ans.txt @@ -0,0 +1,2 @@ + number of stations = 3333.333333
+ Execution done.
|