diff options
Diffstat (limited to '1991/CH11/EX11.3/3.sce')
-rwxr-xr-x | 1991/CH11/EX11.3/3.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1991/CH11/EX11.3/3.sce b/1991/CH11/EX11.3/3.sce new file mode 100755 index 000000000..1b0e9d8cc --- /dev/null +++ b/1991/CH11/EX11.3/3.sce @@ -0,0 +1,10 @@ +clc
+clear
+//input
+v1=7.5//initial voltag
+v2=11.5//final voltage
+ic=18*10^-6//collector current
+//calculation
+r=(v2-v1)/ic//output resistance
+//output
+printf("the output resistance is %2.2e ohm ",r)
|