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/CH3/EX3.4/exp3_4.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/CH3/EX3.4/exp3_4.sce')
-rwxr-xr-x | 1691/CH3/EX3.4/exp3_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1691/CH3/EX3.4/exp3_4.sce b/1691/CH3/EX3.4/exp3_4.sce new file mode 100755 index 000000000..ec342d9e5 --- /dev/null +++ b/1691/CH3/EX3.4/exp3_4.sce @@ -0,0 +1,13 @@ +//Example 3.4
+clc
+disp("The components are,")
+disp(" C1 = C2 = C = 100 pF")
+disp("R1 = R2 = 10 k-ohm")
+t1=(0.69*10*100*10^-9)*10^6
+format(5)
+disp(t1,"Therefore, T1(in usec) = T2 = 0.69*RC =")
+p=2*0.69
+disp(p,"Therefore, Period(in usec) = T = T1+T2 =")
+f=1/1.38
+format(7)
+disp(f,"Therefore, f(in MHz) = 1/T =")
|