the multiplication/intersection of boolean matrices
이전 댓글 표시
This is a question about the multiplication/intersection of boolean matrices.
For example, Consider A=[a11, a12; a21, a22] and B=[b11, b12; b21, b22].
Then if you run "A&B", you would see the result:
답변 (1개)
Jos (10584)
2013년 12월 10일
0 개 추천
Sure ...
- A & B equals logical(A * B)
- A | B equals logical(A+B)
Or am I missing something …
You might be interested in http://en.wikipedia.org/wiki/Boolean_algebra_(introduction)#Basic_operations
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!