> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/trigonometric-functions/atan2.md).

# Atan2

Computes the inverse tangent (arc tangent) of the ratio of its two arguments. For example, if x > 0, then the expression `ATAN2(y, x)` is equivalent to `ATAN(y/x)`

```mathematica
Atan2(1, 2) → 1.10
Atan2(100, 50) → 0.46
```

#### Inputs

`Atan2(x,y)`

* `x` - A number expression
* `y`  - A number expression
