blob: 7591d6323fbd7a0c44ca6340a3a735f64b9e20cb (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
Vcc=10; //volt
RL=10; //ohm
Icsat=Vcc/(2*RL); //Ampere
Vceoff=Vcc/2; //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
|