blob: 653273f19b43252e30cf2fdb0a37446994166e68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Ex8_9
clc
Ai = -60
Ri = 2.0*10^3
RL = 15*10^3
disp("Ai = "+string(Ai))//current gain
disp("Ri = "+string(Ri)+"ohm")//input resistance
disp("RL = "+string(RL)+"ohm")//load resistance
Av = Ai*RL/Ri
disp("Av = Ai*RL/Ri = "+string(Av))//voltage gain
//note : in textbook,
// author notify LOAD RESISTANCE as 'Rc' in question BUT 'RL' in solution.
// I have work with "load resistance notified as RL".
|