blob: 024a98fcab0c1340c224809664482e8a8f29701b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//chapter 8
//example 8.13
//page 335
printf("\n")
printf("given")
Pd=80;
Vce=60;
Ic=Pd/Vce
disp("point 1 Vce=60 and Ic=1.3A")
Vce=40;
Ic=Pd/Vce
disp("point 2 Vce=40 and Ic=2A")
Vce=20;
Ic=Pd/Vce
disp(" point 3 Vce=20 and Ic=4A")
Vce=10;
Ic=Pd/Vce
disp(" point 4 Vce=10 and Ic=8A")
|