1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
---
title: mtx_atan2
description: arctangent (atan) of matrix elements (four-quadrant version)
categories:
- object
pdcategory: Element Math
see_also:
- mtx_sin
- mtx_cos
- mtx_tan
- mtx_atan
inlets:
1st:
- type: matrix
description: right hand operand
2nd:
- type: matrix
description: right hand operand
outlets:
1st:
- type: matrix
description: output
---
$$C_{m\times n} = \operatorname{atan^\circ} (A_{m\times n} \oslash B_{m\times n}) \quad \equiv \quad c_{ij} = \operatorname{atan}(a_{ij} / b_{ij})$$
|