diff options
Diffstat (limited to '1223/CH6/EX6.9/Ex6_9.sce')
-rwxr-xr-x | 1223/CH6/EX6.9/Ex6_9.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1223/CH6/EX6.9/Ex6_9.sce b/1223/CH6/EX6.9/Ex6_9.sce new file mode 100755 index 000000000..ddaeb510a --- /dev/null +++ b/1223/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,10 @@ +clear;
+clc;
+//Example 6.9
+Rs=750;//Ohm
+ro=12500;
+g_m=11.3*10^-3;
+x=1/g_m;
+y=x*Rs/(x+Rs);
+Ro=y*ro/(y+ro);
+printf('\noutput resistance=%.3f ohm\n',Ro)
|