0

atan2

To return the arctangent of the quotient

The function returns the arctangent of the quotient of the given parameters.

Syntax

atan2(number, number)

Return

number

Example

atan2(x,y) To calculate the arctangent of x divided by y.

atan2(7,4) atan2(7,4)

Result: 1.0516502125483738

See also

atan which calculates the arctangent.

tan which calculates the tangent of a number.

Reply

null