diff options
Diffstat (limited to '3788/CH5/EX5.3.3/Ex5_3_3.sce')
-rw-r--r-- | 3788/CH5/EX5.3.3/Ex5_3_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3788/CH5/EX5.3.3/Ex5_3_3.sce b/3788/CH5/EX5.3.3/Ex5_3_3.sce new file mode 100644 index 000000000..3f59009a3 --- /dev/null +++ b/3788/CH5/EX5.3.3/Ex5_3_3.sce @@ -0,0 +1,13 @@ +//example 5.3.3
+//calculate bit rate for BPSK and QPSK
+//variables
+clc
+clear
+BW = 36
+alpha = 0.4
+
+//result
+RsBPSK = BW/(1 + alpha)
+RsQPSK = 2*RsBPSK
+printf("The maximum symbol rate for BPSK RF link is %f Msps \n",RsBPSK)
+printf("The maximum symbol rate for QPSK RF link is %f Msps ",RsQPSK)
|