Main Home Quick tour Documentation Mailing Lists Demonstration Download Sourceforge project FAQ History Links
Toolboxes Char Control Crypto Finance FunFun General Graphics Image Internal InputOutput LinearAlgebra Matrix Miscellaneous Net Polynomial Set Signal SpecFun SpecialMatrix Statistics String System Time Trigonometric ...
Contact Developers
answer = xor(matrix1, matrix2)
Returns the boolean xor of the elements of two matrices.
xor([1,0;0,1], [1,1;0,0]) = [0,1;0,1]
and, or
Last modified