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 /1511/CH2/EX2.36/ex2_36.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 '1511/CH2/EX2.36/ex2_36.sce')
-rwxr-xr-x | 1511/CH2/EX2.36/ex2_36.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1511/CH2/EX2.36/ex2_36.sce b/1511/CH2/EX2.36/ex2_36.sce new file mode 100755 index 000000000..418ce70b6 --- /dev/null +++ b/1511/CH2/EX2.36/ex2_36.sce @@ -0,0 +1,9 @@ +// Example 2.36 page no-125
+clear
+clc
+
+Ct=20 //pF
+v1=5 //v
+v2=6 //v
+Ct2=Ct*sqrt(v1/v2)
+printf("Therefore, decrease in the value of capacitance is\nCt1-Ct2=%.2f pF",Ct-Ct2)
|