Boolean simplify fails for a simple expression
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Fails:
>> syms x y z
>> simplify(x & xor(y, z))
Error using mupadengine/feval (line 163)
The first argument must be a condition.
Error in sym/simplify (line 58)
rSym = feval(symengine, 'simplify', s,...
However, when xor is in root:
>> simplify(xor(x & y, z))
ans =
x & y xor z
3 Kommentare
Walter Roberson
am 7 Mai 2018
Unfortunately there does not appear to be any simple patch in that release.
Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!