diff options
Diffstat (limited to '226/CH4/EX4.1/example1_sce.sce')
-rwxr-xr-x | 226/CH4/EX4.1/example1_sce.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/226/CH4/EX4.1/example1_sce.sce b/226/CH4/EX4.1/example1_sce.sce new file mode 100755 index 000000000..29f73fb20 --- /dev/null +++ b/226/CH4/EX4.1/example1_sce.sce @@ -0,0 +1,12 @@ +//chapter 4
+//example 4.1
+//page 153
+printf("\n")
+printf("given")
+Adc=.98;Ib=100*10^-6;
+Ic=(Adc*Ib)/(1-Adc);
+printf("value of Ic is %3.3fA\n",Ic)
+Ie=Ic/Adc;
+printf(" value of Ie is %3.3fA\n",Ie)
+Bdc=Adc/(1-Adc);
+disp(Bdc)
\ No newline at end of file |