summaryrefslogtreecommitdiff
path: root/3637/CH1/EX1.10/Ex1_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3637/CH1/EX1.10/Ex1_10.sce')
-rw-r--r--3637/CH1/EX1.10/Ex1_10.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3637/CH1/EX1.10/Ex1_10.sce b/3637/CH1/EX1.10/Ex1_10.sce
new file mode 100644
index 000000000..95e8549a9
--- /dev/null
+++ b/3637/CH1/EX1.10/Ex1_10.sce
@@ -0,0 +1,11 @@
+//Example 10 Page No: 1.86
+//given
+inb1=22e-6;//A
+inb2=26e-6;//A
+//determine input offset current input base current
+i1=inb2-inb1;
+i2=(inb2+inb1)/2;
+format(10);
+disp('Input offset current = '+string(i1*10^6)+' μA');
+disp('Input base current = '+string(i2*10^6)+' μA');
+