summaryrefslogtreecommitdiff
path: root/929/CH3/EX3.21.b
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /929/CH3/EX3.21.b
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '929/CH3/EX3.21.b')
-rwxr-xr-x929/CH3/EX3.21.b/Example3_21_b.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/929/CH3/EX3.21.b/Example3_21_b.sce b/929/CH3/EX3.21.b/Example3_21_b.sce
new file mode 100755
index 000000000..888367a4a
--- /dev/null
+++ b/929/CH3/EX3.21.b/Example3_21_b.sce
@@ -0,0 +1,25 @@
+//Example 3.21(b)
+
+clear;
+
+clc;
+
+R1=5758.2799;
+
+R2=2199.4672;
+
+C1=2.000D-08;
+
+C2=1.000D-09;
+
+SC1=1/2;
+
+r=R1/R2;
+
+SR1=(1-r)/(2*(1+r));
+
+printf("Sensitivities for Example 3.10 :");
+
+printf("\nSR=%.2f percent",SR1);
+
+printf("\nSC=%.2f percent",SC1); \ No newline at end of file