simplify(~(~(x | y) & ~(y | z)))
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I don't understand why it is equivalent to x | y | z . Can someone please help to explain this to me?
0 comentarios
Respuesta aceptada
Jan
el 10 de Ag. de 2017
Editada: Jan
el 10 de Ag. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Digital Filtering en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!