summaryrefslogtreecommitdiff
path: root/377/CH10/EX10.1/10_1.sce
blob: b16a3630ecc21623c4c48530f3580928e9dd9f94 (plain)
1
2
3
4
5
6
7
8
Ic=1*10^-3;
Ib=10*10^-6;
b=Ic/Ib;  //say b=β
printf('\n The value of β is %f',b);
Ie=Ic+Ib;
printf('\n The value of Ie is %f A',Ie);
a=Ic/Ie;
printf('\n The value of α is %f',a);