Owning Class: boolean
Requires: MathScript RT Module
c = and(a, b)
Determines whether corresponding elements of two inputs are non-zero.
| Name | Description |
|---|---|
| a | Specifies a scalar, vector, or matrix of Boolean values. |
| b | Specifies a scalar, vector, or matrix of Boolean values. b must be the same size as a. |
| Name | Description |
|---|---|
| c | Returns Boolean values, where an element in c is 1 if corresponding elements of a and b are non-zero. Otherwise, the element is 0. c is a scalar, vector, or matrix of the same size as a. |
A = [1, 0]
B = [1, 1]
C = and(A, B)