summaryrefslogtreecommitdiff
path: root/3630/CH7/EX7.10/Ex7_10.sce
blob: 7b2d2577fa80987695b81d4ffa9987ba0b0f5b7f (plain)
1
2
3
4
5
6
7
8
9
clc;
Vee=-12; //volt
Re=1500; //ohm
Icq=-(Vee+0.7)/Re; //Ampere
Vcc=12; //volt
Rc=750; //ohm
Vceq=Vcc-Icq*Rc+0.7; //volt
disp('mA',Icq*1000,"Icq=");//The answers vary due to round off error
disp('V',Vceq,"Vceq=");//The answers vary due to round off error