blob: efae685e025fac648710e42d46f29e9963c1a032 (
plain)
1
2
3
4
5
6
7
8
9
|
ie=6;
ib=0.12;
ic=ie-ib;
disp("Part a");
beta=ic/ib;
disp("the beta of the transistor is"); disp(beta);
disp("Part b");
alpha=beta/(1+beta);
disp("the alpha of the transistor is"); disp(alpha);
|