1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
---
title: mtx_&
description: matrix bitwise AND
aliases:
- mtx_bitand
categories:
- object
pdcategory: Element Math
see_also:
- mtx_&&
- mtx_|
inlets:
1st:
- type: matrix
description: input matrix A
2nd:
- type: matrix
description: input matrix B
outlets:
1st:
- type: matrix
description: output matrix (A.&B)
---
Each element of the input matrices is converted to integer and interpreted as a bitfield.
Afterwards an "and" is performed on the corresponding bits within the
corresponding matrix elements.
$$C_{m\times n} = A_{m\times n} \And ^{\circ} B_{m\times n} \quad \equiv \quad c_{ij} = a_{ij} \And b_{ij}$$
|