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 --- 3866/CH6/EX6.16/Ex6_16.sce | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 3866/CH6/EX6.16/Ex6_16.sce (limited to '3866/CH6/EX6.16/Ex6_16.sce') diff --git a/3866/CH6/EX6.16/Ex6_16.sce b/3866/CH6/EX6.16/Ex6_16.sce new file mode 100644 index 000000000..d91602429 --- /dev/null +++ b/3866/CH6/EX6.16/Ex6_16.sce @@ -0,0 +1,23 @@ +clc; clear; close; + +Cin=1; +a=8; +b=64; +LEinv=1; +//solving without sideload 'a' +SE=(LEinv*b/Cin)^(1/3); +y=LEinv*b/SE; +mprintf('WITHOUT SIDELOAD'); +disp(y,'Y='); +x=LEinv*y/SE; +disp(x,'X='); +w=LEinv*x/SE; +disp(w,'W='); +//adding sideload by removing gates beyond sideload +sideload_c=y+a; +SE1=(LEinv*sideload_c/Cin)^(1/2); +X=round(LEinv*sideload_c/SE1); +mprintf('\n WITH SIDELOAD'); +disp(y,'Y='); +disp(X,'X='); +disp(w,'W='); -- cgit