summaryrefslogtreecommitdiff
path: root/2606/CH10/EX10.27
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2606/CH10/EX10.27
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 '2606/CH10/EX10.27')
-rwxr-xr-x2606/CH10/EX10.27/ex10_27.jpgbin0 -> 4786 bytes
-rwxr-xr-x2606/CH10/EX10.27/ex10_27.sce19
2 files changed, 19 insertions, 0 deletions
diff --git a/2606/CH10/EX10.27/ex10_27.jpg b/2606/CH10/EX10.27/ex10_27.jpg
new file mode 100755
index 000000000..1faf4cdf3
--- /dev/null
+++ b/2606/CH10/EX10.27/ex10_27.jpg
Binary files differ
diff --git a/2606/CH10/EX10.27/ex10_27.sce b/2606/CH10/EX10.27/ex10_27.sce
new file mode 100755
index 000000000..c22b22599
--- /dev/null
+++ b/2606/CH10/EX10.27/ex10_27.sce
@@ -0,0 +1,19 @@
+//Page Number: 10.43
+//Example 10.27
+clc;
+//Given
+Rb=4.8D+3; //b/s
+bw=3.2D+3; //Hz
+
+//BPSK can give maximum spectral efficiency of 1bps/Hz, therefore not suitable
+//QPSK can give twice spectral efficiency,2bps/Hz, therefore
+qpsk=2*bw;
+//PSK can give thrice spectral efficiency,3bps/Hz, therefore
+psk=3*bw;
+
+//QPSK is most suitable
+Rs=Rb/2;
+//Roll off Factor
+a=(bw/Rs)-1;
+ap=a*100;
+disp('%',ap,'Roll off factor:');