summaryrefslogtreecommitdiff
path: root/2444/CH4/EX4.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH4/EX4.9
downloadScilab-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.9')
-rwxr-xr-x2444/CH4/EX4.9/ex4_9.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2444/CH4/EX4.9/ex4_9.sce b/2444/CH4/EX4.9/ex4_9.sce
new file mode 100755
index 000000000..2fe530a6b
--- /dev/null
+++ b/2444/CH4/EX4.9/ex4_9.sce
@@ -0,0 +1,12 @@
+// Exa 4.9
+clc;
+clear;
+close;
+format('v',8)
+// Given data
+delV_BE = 250;// in mV
+delV_BE = delV_BE * 10^-3;// in V
+delI_B = 1;// in mA
+delI_B = delI_B * 10^-3;// in A
+r_in = delV_BE/delI_B;// in ohm
+disp(r_in,"The dynamic input resistance in ohm is");