summaryrefslogtreecommitdiff
path: root/851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce')
-rwxr-xr-x851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce b/851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce
new file mode 100755
index 000000000..faa26ee42
--- /dev/null
+++ b/851/CH9/EX9.4.9.5/Example9_4_Example9_5.sce
@@ -0,0 +1,22 @@
+//clear//
+//Caption:Slow and Fast Frequency hopping: FH/MFSK
+//Example9.4 and Example9.5: Parameters of FH/MFSK signal
+//Slow and Fast Frequency Hopping
+clear;
+close;
+clc;
+K =2; //number of bits per symbol
+M = 2^K; //Number of MFSK tones
+N = 2^M-1;//Period of the PN sequence
+k = 3; //length of PN sequence per hop
+disp(K,'number of bits per symbol K =')
+disp(M,'Number of MFSK tones M=')
+disp(N,'Period of the PN sequence N =')
+disp(k,'length of PN sequence per hop k =')
+disp(2^k,'Total number of frequency hops =')
+//Result
+//number of bits per symbol K = 2.
+//Number of MFSK tones M = 4.
+//Period of the PN sequence N = 15.
+//length of PN sequence per hop k = 3.
+//Total number of frequency hops = 8.