diff options
Diffstat (limited to '3554/CH16')
-rw-r--r-- | 3554/CH16/EX16.1/Ex16_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3554/CH16/EX16.1/Ex16_1.sce b/3554/CH16/EX16.1/Ex16_1.sce new file mode 100644 index 000000000..7632424b4 --- /dev/null +++ b/3554/CH16/EX16.1/Ex16_1.sce @@ -0,0 +1,16 @@ +// Exa 16.1
+
+clc;
+clear all;
+
+// Given data
+
+fd=75; // Frequency deviation in KHz
+fm=5;// Frequency of modulating signal in kHz
+
+// Solution
+
+// From equation 16.5 (page no. 590) we calculate Mi as
+Mi=fd/fm; // Modulation index
+
+printf(' The modulation index =%d \n',Mi);
|