summaryrefslogtreecommitdiff
path: root/851/CH7/EX7.06/Table7_06.sce
diff options
context:
space:
mode:
Diffstat (limited to '851/CH7/EX7.06/Table7_06.sce')
-rwxr-xr-x851/CH7/EX7.06/Table7_06.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/851/CH7/EX7.06/Table7_06.sce b/851/CH7/EX7.06/Table7_06.sce
new file mode 100755
index 000000000..be81e3cfb
--- /dev/null
+++ b/851/CH7/EX7.06/Table7_06.sce
@@ -0,0 +1,14 @@
+//clear//
+//Caption:Bandwidth efficiency of M-ary PSK signals
+//Table7.6: Bandwidth Efficiency of M-ary PSK signals
+clear;
+clc;
+close;
+M = [2,4,8,16,32,64];//M-ary
+Ruo = log2(M)./2; //Bandwidth efficiency in bits/s/Hz
+disp('Table 7.7 Bandwidth Efficiency of M-ary PSK signals')
+disp('______________________________________________________')
+disp(M,'M')
+disp('______________________________________________________')
+disp(Ruo,'r in bits/s/Hz')
+disp('______________________________________________________')