diff options
Diffstat (limited to '3515/CH1/EX1.27/Ex1_27.sce')
-rw-r--r-- | 3515/CH1/EX1.27/Ex1_27.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3515/CH1/EX1.27/Ex1_27.sce b/3515/CH1/EX1.27/Ex1_27.sce new file mode 100644 index 000000000..5ce4edd8b --- /dev/null +++ b/3515/CH1/EX1.27/Ex1_27.sce @@ -0,0 +1,20 @@ +// Exa 1.27
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+Ao= 86;// in dB
+A= 40;// in dB
+f=100;// in kHz
+f=f*10^3;// in Hz
+// From 20*log(S) = 20*log(Ao/A), where S, stands for sqrt(1+(f/fb)^2)
+S= 10^((Ao-A)/20);
+// S= sqrt(1+(f/fb)^2)
+fb= f/sqrt(S^2-1);// in Hz
+Ao= 10^(Ao/20);
+ft= Ao*fb;// in Hz
+ft= round(ft*10^-6);// in MHz
+disp(Ao,"The value of Ao is : ")
+disp(fb,"The value of fb in Hz is : ")
+disp(ft,"The value of ft in MHz is : ")
|