blob: de1e48559a31f4f2d8c42c2c789fa96dad633372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Example 6.3.
clc
format(6)
alpha=0.967
IE=10
disp("The common-base d.c. current gain (alpha) is,")
disp("alpha = 0.967 = IC/IE = IC/10")
IC=alpha*IE
disp(IC,"Therefore, IC(mA) = ")
disp("The emitter current, IE = IB + IC")
IB=IE-IC
disp(IB,"Therefore, IB(mA) = ")
|