summaryrefslogtreecommitdiff
path: root/226/CH4/EX4.1/example1_sce.sce
blob: 29f73fb20b8137cee34dd9fdd7f601482743cbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//chapter 4
//example 4.1
//page 153
printf("\n")
printf("given")
Adc=.98;Ib=100*10^-6;
Ic=(Adc*Ib)/(1-Adc);
printf("value of Ic is %3.3fA\n",Ic)
Ie=Ic/Adc;
printf(" value of Ie is %3.3fA\n",Ie)
Bdc=Adc/(1-Adc);
disp(Bdc)