summaryrefslogtreecommitdiff
path: root/3515/CH5/EX5.3/Ex_5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH5/EX5.3/Ex_5_3.sce')
-rw-r--r--3515/CH5/EX5.3/Ex_5_3.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3515/CH5/EX5.3/Ex_5_3.sce b/3515/CH5/EX5.3/Ex_5_3.sce
new file mode 100644
index 000000000..f08740257
--- /dev/null
+++ b/3515/CH5/EX5.3/Ex_5_3.sce
@@ -0,0 +1,15 @@
+// Exa 5.3
+format('v',5);
+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 : ")