ATAN2
Returns a DOUBLE PRECISION value representing the trigonometric inverse tangent of the arithmetic dividend of the arguments.
Returns a DOUBLE PRECISION value representing the trigonometric inverse tangent of the arithmetic dividend of the arguments.
Behavior type
ImmutableSyntax
ATAN2 ( quotient, divisor )
Parameters
quotient
- Is an expression of type DOUBLE PRECISION representing the quotient
divisor
- Is an expression of type DOUBLE PRECISION representing the divisor
Examples
SELECT ATAN2(2,1);
ATAN2
------------------
1.10714871779409
(1 row)