diff options
Diffstat (limited to '1850/CH2/EX2.12/exa_2_12.sce')
-rwxr-xr-x | 1850/CH2/EX2.12/exa_2_12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1850/CH2/EX2.12/exa_2_12.sce b/1850/CH2/EX2.12/exa_2_12.sce new file mode 100755 index 000000000..e0a8d6f3d --- /dev/null +++ b/1850/CH2/EX2.12/exa_2_12.sce @@ -0,0 +1,14 @@ +// Exa 2.12
+clc;
+clear;
+close;
+// Given data
+format('v',9)
+IB1= 10;// in mA
+IB2= 7.5;// in mA
+I_in_bias= (IB1+IB2)/2;// in mA
+disp(I_in_bias,"Input bias current in mA")
+I_in_offset= IB1-IB2 ;// in mA
+disp(I_in_offset,"Input offset current in mA")
+
+// Note: Units in Answer in the book is wrong
|