summaryrefslogtreecommitdiff
path: root/851/CH7/EX7.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /851/CH7/EX7.4
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/CH7/EX7.4')
-rwxr-xr-x851/CH7/EX7.4/Figure7_4.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/851/CH7/EX7.4/Figure7_4.sce b/851/CH7/EX7.4/Figure7_4.sce
new file mode 100755
index 000000000..adf1fa95b
--- /dev/null
+++ b/851/CH7/EX7.4/Figure7_4.sce
@@ -0,0 +1,22 @@
+//clear//
+//Caption:Signal Space diagram for coherent BFSK
+//Figure7.4 Signal Space Diagram for coherent BFSK system
+clear
+clc;
+close;
+M =2;
+y = [1,0;0,1];
+annot = dec2bin([M-1:-1:0],log2(M));
+disp(y,'coordinates of message points')
+disp(annot,'Message points')
+figure;
+a =gca();
+a.data_bounds = [-2,-2;2,2];
+a.x_location = "origin";
+a.y_location = "origin";
+plot2d(y(1,1),y(1,2),-9)
+plot2d(y(2,1),y(2,2),-5)
+xlabel(' In-Phase');
+ylabel(' Quadrature');
+title('Constellation for BFSK')
+legend(['message point 1 (binary 1)';'message point 2 (binary 0)'],5)