diff options
Diffstat (limited to '1409/CH5/EX5.8/5_8.sce')
-rw-r--r-- | 1409/CH5/EX5.8/5_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1409/CH5/EX5.8/5_8.sce b/1409/CH5/EX5.8/5_8.sce new file mode 100644 index 000000000..6e01f1bbb --- /dev/null +++ b/1409/CH5/EX5.8/5_8.sce @@ -0,0 +1,11 @@ +clc;
+//page no 5-13
+//Example 5.8
+//Given carrier swing is 70kHz and frequency of modulating signal is 7kHz
+Cs=70;//in kHz
+fm=7;//in kHz
+//Carrier swing=2*frequency deviation
+fd=Cs/2;
+disp(+'kHz',fd,'Frequency deviation is');
+beta1=fd/fm;
+disp(beta1,'Modulation index is');
|