diff options
Diffstat (limited to '3866/CH6/EX6.12/Ex6_12.sce')
-rw-r--r-- | 3866/CH6/EX6.12/Ex6_12.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3866/CH6/EX6.12/Ex6_12.sce b/3866/CH6/EX6.12/Ex6_12.sce new file mode 100644 index 000000000..6cfeb1fe7 --- /dev/null +++ b/3866/CH6/EX6.12/Ex6_12.sce @@ -0,0 +1,10 @@ +clc; close; clear;
+
+Cgate=1+1;
+Cinv=1+2;
+LEf=Cgate/Cinv;
+LEr=2*Cgate/Cinv;
+LE=(LEf+LEr)/2;
+disp(LEf,'Falling case Logical effort=');
+disp(LEr,'Rising case Logical effort=');
+disp(LE,'Average logical effort=');
|