From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2702/CH4/EX4.8/Ex_4_8.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2702/CH4/EX4.8/Ex_4_8.sce (limited to '2702/CH4/EX4.8/Ex_4_8.sce') diff --git a/2702/CH4/EX4.8/Ex_4_8.sce b/2702/CH4/EX4.8/Ex_4_8.sce new file mode 100644 index 000000000..42afd444d --- /dev/null +++ b/2702/CH4/EX4.8/Ex_4_8.sce @@ -0,0 +1,11 @@ +// Exa 4.8 +clc; +clear; +close; +// Given data +iE1_by_I= 0.99; // as it is given that iE1= 0.99 *I +VT= 0.025;// in volt +// Formula iE1= I/(1+%e^(-vid/VT)) +// %e^(-vid/VT)= 1/iE1_by_I-1 +vid= log( 1/iE1_by_I-1)*(-VT);// in volt +disp(round(vid*10^3),"Input differential signal in mVis : ") -- cgit