blob: fa65f99c82e282dd280bf4adeb02845f72644cab (
plain)
1
2
3
4
5
6
7
8
|
clc;
B=400;
Ic=0.05; //Amperes
Ib=Ic/B; //Amperes
Ie=Ic+Ib; //Amperes
disp('Amperes',Ib,"Ib=");//The answers vary due to round off error
disp('Amperes',Ie,"Ie=");//The answers vary due to round off error
|