Member of the bitwise class.
c = bitand(a, b)
Computes the bitwise and of corresponding elements of two input matrices. For example, if a = 5 (101) and b = 9 (1001), bitand(a, b) = bitand(5, 9) = 1 (0001).
| Name | Description |
| a | Specifies a scalar, vector, or matrix of positive integers. All elements of a must be less than bitmax. |
| b | Specifies a scalar, vector, or matrix of positive integers. b must be the same size as a. All elements of b must be less than bitmax. |
| Name | Description |
| c | Returns the bitwise and of a and b. c is a matrix of the same size as a and b. |
A = [134, 45, 232]
B = [453, 32, 134]
C = bitand(A, B)