diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1691/CH1/EX1.12/Example1_12.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1691/CH1/EX1.12/Example1_12.sce')
-rwxr-xr-x | 1691/CH1/EX1.12/Example1_12.sce | 16 |
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) =")
|