summaryrefslogtreecommitdiff
path: root/1691/CH1/EX1.12/Example1_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1691/CH1/EX1.12/Example1_12.sce')
-rwxr-xr-x1691/CH1/EX1.12/Example1_12.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1691/CH1/EX1.12/Example1_12.sce b/1691/CH1/EX1.12/Example1_12.sce
new file mode 100755
index 000000000..c6690fb2f
--- /dev/null
+++ b/1691/CH1/EX1.12/Example1_12.sce
@@ -0,0 +1,16 @@
+//Example 1.12
+clc
+disp("A_v = 1000 and beta = 0.1")
+fh=1+(0.1*1000)
+format(4)
+disp(fh,"(i) f_Hf/f_H = 1 + beta*A_v =")
+fl=1/(1+(0.1*1000))
+format(7)
+disp(fl,"and f_Lf/f_L = 1 / 1+beta*A_v =")
+disp("(ii) With f_L = 20 Hz and f_H = 50 kHz")
+fll=20*0.0099
+format(6)
+disp(fll,"f_Lf(in Hz) =")
+fhh=(50*101)*10^-3
+format(5)
+disp(fhh,"f_Hf(in MHz) =")