summaryrefslogtreecommitdiff
path: root/1223/CH10/EX10.8/Ex10_8.sce
blob: 3e84383c586705add0227b88a24a1d1cf0615f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clear;
clc;
//Example 10.8
Iref=100;
Io=Iref;
//lambda=y
y=0.01;
gm=0.5*10^+3;
ro=1/(y*Iref);
printf('\noutput resistance=%.2f MOhm\n',ro)
ro2=1;
ro4=1;
Ro=ro4+ro2*(1+gm*ro4);
printf('\noutput resistance of cascode circuit=%.2f MOhm\n',Ro)