diff options
Diffstat (limited to '2444/CH4/EX4.3/ex4_3.sce')
-rwxr-xr-x | 2444/CH4/EX4.3/ex4_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
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");
|