diff options
Diffstat (limited to '1409/CH5/EX5.17/5_17.sce')
-rw-r--r-- | 1409/CH5/EX5.17/5_17.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1409/CH5/EX5.17/5_17.sce b/1409/CH5/EX5.17/5_17.sce new file mode 100644 index 000000000..5939e7593 --- /dev/null +++ b/1409/CH5/EX5.17/5_17.sce @@ -0,0 +1,10 @@ +clc;
+//page no 5-51
+//Example 5.17
+//Given maximum value of frequency deviation is 75kHz and modulation frequency is 15kHz
+fd=75;//in kHz
+fm=15;//in kHz
+//Bandwidth using carson's rule
+beta1=fd/fm;
+Bw=2*(beta1+1)*fm;
+disp(+'kHz',Bw,'Bandwidth of FM signal is');
|