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 /2609/CH4/EX4.9 | |
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 '2609/CH4/EX4.9')
-rwxr-xr-x | 2609/CH4/EX4.9/ex_4_9.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2609/CH4/EX4.9/ex_4_9.sce b/2609/CH4/EX4.9/ex_4_9.sce new file mode 100755 index 000000000..2d1689658 --- /dev/null +++ b/2609/CH4/EX4.9/ex_4_9.sce @@ -0,0 +1,17 @@ +////Ex 4.9
+clc;
+clear;
+close;
+format('v',5);
+I2=1;//mA
+Rf=4.7;//kohm
+//Case 1st
+I1=500;//micro A
+Vout1=-I1*10^-6*Rf*10^3;//V
+disp(Vout1,"For 500 micro A current, Output Voltage(V)");
+//Case 2nd
+I2=1;//mA
+Vout2=-I2*10^-3*Rf*10^3;//V
+disp(Vout2,"For 1 mA current, Output Voltage(V)");
+deltaVout=Vout2-Vout1;//V
+disp(deltaVout,"Variation in Output Voltage(V)");
|