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 = AND(matrix1, matrix2)
Returns the boolean and of all the elements of the two matrices.
and([1,1;1,1], [0,0;0,0]) = [0,0;0,0] and([1,2], [2,1]) = [1,1]
not, or, xor
Last modified