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