math_atan2

Two-argument arc tangent.

Target function

Signature

1math_atan2(value, factor)

Two-argument arc tangent.

math_atan2 is a global callable that can be used wherever an expression is valid. math_atan2 is part of numeric expression work. Be deliberate about integer versus decimal inputs because several math helpers preserve or infer the result type from their arguments.

Parameters

value
Required value. Supply value positionally unless the signature shows a keyword form.
factor
Required value. Supply factor positionally unless the signature shows a keyword form.

Examples

Basic call

1math_atan2(1, 1)
The example keeps numeric inputs explicit so integer and decimal behavior remain visible.