diff options
Diffstat (limited to '3860/CH3/EX3.7/Ex3_7.sce')
-rw-r--r-- | 3860/CH3/EX3.7/Ex3_7.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3860/CH3/EX3.7/Ex3_7.sce b/3860/CH3/EX3.7/Ex3_7.sce new file mode 100644 index 000000000..18f53b0be --- /dev/null +++ b/3860/CH3/EX3.7/Ex3_7.sce @@ -0,0 +1,9 @@ +//Example 3.7 Reduction using K-Map
+clc; //clears the console window
+clear; //clears the variable browser
+disp('f = a''b''c + a''bc'' + a''bc + ab''c''')
+disp('The mapping is shown below')
+disp(' A''B'' A''B AB AB''')
+disp('C'' 1 1 - 1')
+disp('C - 1 - -') //The kmap for f is displayed//
+disp('f = a''b + b''c''')
|