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 /998/CH29/EX29.93/Ex93.sce | |
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 '998/CH29/EX29.93/Ex93.sce')
-rwxr-xr-x | 998/CH29/EX29.93/Ex93.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/998/CH29/EX29.93/Ex93.sce b/998/CH29/EX29.93/Ex93.sce new file mode 100755 index 000000000..bfc82a227 --- /dev/null +++ b/998/CH29/EX29.93/Ex93.sce @@ -0,0 +1,16 @@ +//Ex:93
+clc;
+clear;
+close;
+b_c=36;//carrier BW in MHz
+f_d=4000;//Dowm link freq in MHz
+f_i=70;// first intermediate freq in MHz
+f_smx=4200;//max uplink freq spectrum in MHz
+f_smn=3700;//min uplink freq spectrum in MHz
+f_dl2=1000;// in MHz
+f_l2=f_d-f_dl2;// in MHz
+f_l1=f_d-f_i-f_l2;// in MHz
+printf("The max second oscillator frequency =%f GHz", f_l2/1000);
+printf("\n The min second oscillator frequency =%f MHz", f_l1);
+printf("\n The center frequency of BPF-1 =%f GHz", f_dl2/1000);
+printf("\n The BW=%f MHz", b_c);
\ No newline at end of file |