---
title: "atan2 (Opus Funktion)"
---
### Beschreibung

Berechnet den Arcus Tangens von Y/X ohne Probleme mit der Division durch 0.

### Argumente

| Name | Typ | Beschreibung |
| --- | --- | --- |
|  | [float](../../standard-datentypen/float.md) | Beliebige Zahl (Y) |
|  | [float](../../standard-datentypen/float.md) | Beliebige Zahl (X) |

### Rückgabewert [float](../../standard-datentypen/float.md)

Arcus Tangens von Y/X, ohne Probleme mit der Division durch 0.

### Beispiel

```
Result = atan2(0.07071,1);
Result = atan2(0.7071,0);
```

### Siehe auch

[atan](atan-opus-funktion.md)

[asin](asin-opus-funktion.md)

[acos](acos-opus-funktion.md)
