diff options
Diffstat (limited to '3542/CH6/EX6.3/Ex6_3.sce')
-rw-r--r-- | 3542/CH6/EX6.3/Ex6_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3542/CH6/EX6.3/Ex6_3.sce b/3542/CH6/EX6.3/Ex6_3.sce new file mode 100644 index 000000000..6fe12f1d4 --- /dev/null +++ b/3542/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,17 @@ +// Example no 6.3
+// To determine the IF bandwidth necessary to pass the given signal.
+// Page no. 267
+
+clc;
+clear all;
+
+// Given data
+fm=100*10^3; // Modulating frequency in Hz
+deltaf=500*10^3; // Peak frequency deviation in Hz
+betaf=deltaf/fm; // Modulation index
+
+// The IF bandwidth occupied by FM signal using Carson's rule
+BT=2*(betaf+1)*fm; // The IF bandwidth necessary to pass the given signal
+
+// Displaying the result in command window
+printf('\n Using Carson rule, the IF bandwidth occupied by FM signal = %0.0f kHz',BT*10^-3);
|