blob: 9b4491d83906ee8386ef5ff74fc760ea0109db70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Ex8_10
clc
Av = -200
Ri = 10*10^3
RL = 3*10^3
Ai = Av*Ri/RL
disp("Av = "+string(Av))//voltage gain
disp("Ri = "+string(Ri)+"ohm")//input resistance
disp("RL = "+string(RL)+"ohm")//load resistance
disp("Ai = Av*Ri/RL = "+string(Ai))//current gain
// note : there are mis-printring in the textbook for the above problem regading formula and notations.
// answer in the textbook for above problem is wrong.
|