From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2444/CH4/EX4.3/ex4_3.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2444/CH4/EX4.3/ex4_3.sce (limited to '2444/CH4/EX4.3/ex4_3.sce') diff --git a/2444/CH4/EX4.3/ex4_3.sce b/2444/CH4/EX4.3/ex4_3.sce new file mode 100755 index 000000000..8c1b7d888 --- /dev/null +++ b/2444/CH4/EX4.3/ex4_3.sce @@ -0,0 +1,14 @@ +// Exa 4.3 +clc; +clear; +close; +format('v',8) +// Given data +Alpha = 0.988;// unit less +I_E = 1.2;// in mA +I_E = I_E * 10^-3;// in A +I_CO = 0;// in A +I_C = Alpha*I_E + I_CO;// in A +I_B = I_E - I_C;// in A +I_B = I_B * 10^6;// in µA +disp(I_B,"The base current in µA is"); -- cgit