blob: c894d3af36fb5bc7e3445b94d7197ea75c3c1c4f (
plain)
1
2
3
4
5
6
|
//Example 2.27: Manipulation of algebric functions into POS form.
clc // Clears the console
disp('f = (A + B + C) ( A'' + B'')')
disp('f = (A + B + C) ( A'' + B'' + C) ( A'' + B'' + C'')')// converting into disjunctive normal form.
disp(' The POS form of given expression is displayed')
//the reduced expression is displayed.
|