simplify(~(~(x | y) & ~(y | z)))
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I don't understand why it is equivalent to x | y | z . Can someone please help to explain this to me?
0 Commenti
Risposta accettata
Jan
il 10 Ago 2017
Modificato: Jan
il 10 Ago 2017
~(x | y) <==> ~x & ~y
~(x & y) <==> ~x | ~y
Then
~(~(x | y) & ~(y | z)) ==>
~((~x & ~y) & (~y & ~z)) ==>
~(~x & ~y) | ~(~y & ~z) ==>
~~x | ~~y | ~~y | ~~z ==>
x | y | y | z ==>
x | y | z
Applying the operations from the outside to the inside is faster:
~(~(x | y) & ~(y | z)) ==>
~~(x | y) | ~~(x | z) ==>
x | y | y | z
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Digital Filtering in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!