blob: aab2cae11781c77f92470644591358f92c98780a (
plain)
1
2
3
4
5
6
7
8
|
clc;
Vcc=12; //volt
Rc=750; //ohm
Re=1500;//ohm
Icsat=(2*Vcc)/(Rc+Re); //Ampere
Vceoff=2*Vcc; //volt
disp('mA',Icsat*1000,"Icsat=");//The answers vary due to round off error
disp('V',Vceoff,"Vceoff=");//The answers vary due to round off error
|