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 /2081/CH11/EX11.10/Ex11_10.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 '2081/CH11/EX11.10/Ex11_10.sce')
-rwxr-xr-x | 2081/CH11/EX11.10/Ex11_10.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/2081/CH11/EX11.10/Ex11_10.sce b/2081/CH11/EX11.10/Ex11_10.sce new file mode 100755 index 000000000..56c499931 --- /dev/null +++ b/2081/CH11/EX11.10/Ex11_10.sce @@ -0,0 +1,20 @@ +BWupl=890 +BWupu=915 +BWdwl=935 +BWdwu=960 +BWup=BWupu-BWupl//bandwidth uplink +BWdw=BWdwu-BWdwl//bandwidth downlink +if BWup==BWdw then + disp(BWup,'in either case the maximum frequency hop or change from one frame to the next in MHz') + +else + disp(BWup,'in uplink case the maximum frequency hop or change from one frame to the next in MHz') + disp(BWdw,'in downlink case the maximum frequency hop or change from one frame to the next in MHz') +end +mecfup=BWupl+(BWupu-BWupl)/2//uplink transmission +mfhup=BWup/mecfup +disp(mfhup*100,'maximum frequency hop for uplink transmission in %') + +mecfdw=BWdwl+(BWdwu-BWdwl)/2//downlink transmission +mfhdw=BWdw/mecfdw +disp(mfhdw*100,'maximum frequency hop for downlink transmission in %') |