summaryrefslogtreecommitdiff
path: root/2702/CH5/EX5.3
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH5/EX5.3')
-rw-r--r--2702/CH5/EX5.3/Ex_5_3.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2702/CH5/EX5.3/Ex_5_3.sce b/2702/CH5/EX5.3/Ex_5_3.sce
new file mode 100644
index 000000000..ef563a9fc
--- /dev/null
+++ b/2702/CH5/EX5.3/Ex_5_3.sce
@@ -0,0 +1,14 @@
+// Exa 5.3
+clc;
+clear;
+close;
+// Given data
+Bita= 5/100;
+f_H= 50;// in kHz
+f_H= f_H*10^3;// in Hz
+f_L= 50;// in kHz
+Amid= 1000;
+f_LF= f_L/(1+Bita*Amid);// in Hz
+f_HF= f_H*(1+Bita*Amid);// in Hz
+disp(f_LF,"Value of f_LF in Hz is : ")
+disp(f_HF*10^-6,"Value of f_LF in MHz is : ")