summaryrefslogtreecommitdiff
path: root/3866/CH6/EX6.16/Ex6_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '3866/CH6/EX6.16/Ex6_16.sce')
-rw-r--r--3866/CH6/EX6.16/Ex6_16.sce23
1 files changed, 23 insertions, 0 deletions
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=');