summaryrefslogtreecommitdiff
path: root/1223/CH10/EX10.8/Ex10_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH10/EX10.8/Ex10_8.sce')
-rwxr-xr-x1223/CH10/EX10.8/Ex10_8.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1223/CH10/EX10.8/Ex10_8.sce b/1223/CH10/EX10.8/Ex10_8.sce
new file mode 100755
index 000000000..3e84383c5
--- /dev/null
+++ b/1223/CH10/EX10.8/Ex10_8.sce
@@ -0,0 +1,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)