diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /992/CH6/EX6.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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.
|