Skip to main content

ArcTan

Calculates the arctangent of a given number.

Structure

ArcTan(number): Extended;

Parameters

Return Value

Description

Calculate other trigonometric functions using Sin, Cos, and ArcTan in the following expressions:

Tan(x) = Sin(x) / Cos(x)

ArcSin(x) = ArcTan (x/sqrt (1-sqr (x)))

ArcCos(x) = ArcTan (sqrt (1-sqr (x)) /x) |