diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH4/EX4.17/ex4_17.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2444/CH4/EX4.17/ex4_17.sce')
-rwxr-xr-x | 2444/CH4/EX4.17/ex4_17.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2444/CH4/EX4.17/ex4_17.sce b/2444/CH4/EX4.17/ex4_17.sce new file mode 100755 index 000000000..59c51215b --- /dev/null +++ b/2444/CH4/EX4.17/ex4_17.sce @@ -0,0 +1,19 @@ +// Exa 4.17
+clc;
+clear;
+close;
+format('v',7)
+// Given data
+h_ie = 2600;// in ohm
+h_fe = 100;
+h_re = 0.02*10^-2;
+h_oe = 5*10^-6;// in S
+h_ic = h_ie;// in ohm
+disp(h_ic,"The value of h_ic in ohm is");
+h_fc = -(1+h_fe);
+disp(h_fc,"The value of h_fc is");
+h_rc = 1 - h_re;
+h_rc = 1;
+disp(h_rc,"The value of h_rc is");
+h_oc = h_oe;// in S
+disp(h_oc,"The value of h_oc in S is");
|