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 /2606/CH10/EX10.27 | |
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 '2606/CH10/EX10.27')
-rwxr-xr-x | 2606/CH10/EX10.27/ex10_27.jpg | bin | 0 -> 4786 bytes | |||
-rwxr-xr-x | 2606/CH10/EX10.27/ex10_27.sce | 19 |
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 Binary files differnew file mode 100755 index 000000000..1faf4cdf3 --- /dev/null +++ b/2606/CH10/EX10.27/ex10_27.jpg 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:');
|