diff options
Diffstat (limited to '620/CH29/EX29.3/example29_3.sce')
-rw-r--r-- | 620/CH29/EX29.3/example29_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/620/CH29/EX29.3/example29_3.sce b/620/CH29/EX29.3/example29_3.sce new file mode 100644 index 000000000..efae685e0 --- /dev/null +++ b/620/CH29/EX29.3/example29_3.sce @@ -0,0 +1,9 @@ +ie=6;
+ib=0.12;
+ic=ie-ib;
+disp("Part a");
+beta=ic/ib;
+disp("the beta of the transistor is"); disp(beta);
+disp("Part b");
+alpha=beta/(1+beta);
+disp("the alpha of the transistor is"); disp(alpha);
\ No newline at end of file |