blob: d3f138c8b57a4b5f86ce35d766791f0e23bcb0f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear;
clc;
//Example 13.13
Va=150;
Vt=0.026;
Ic13=0.2;
gm13=Ic13/Vt;
printf('\ntransconductance=%.2f mA/V\n',gm13)
ro13=Va/Ic13;
printf('\noutput resistance=%.2f KOhm\n',ro13)
Av2=gm13*ro13;
printf('\nvoltage gain=%.2f \n',Av2)
|