blob: 9378b2c92bd38ccad51b8c543b8d566688d4e783 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
Re=2000; //Ohm
RL=5000; //Ohm
rE=(Re*RL)/(Re+RL); //Ohm
Ie=0.031; //Ampere
re=0.025/Ie; //Ohm
Av=rE/(rE+re);
disp(' ',Av,"Av=");//The answers vary due to round off error
|