diff options
Diffstat (limited to '2606/CH10/EX10.27/ex10_27.sce')
-rwxr-xr-x | 2606/CH10/EX10.27/ex10_27.sce | 19 |
1 files changed, 19 insertions, 0 deletions
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:');
|