atan Function

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

Retrieves the arc tangent of a real number.

real atan(real arg)

Parameters

Parameter

Description

arg

The number for which to calculate the arc tangent.

Return Value

The arc tangent of the specified number.

Remarks

  • aTan(0.36) //Returns 0.35.

Example

static void atanExample(Args _args)
{
    real r;
    ;
 
    r = atan(1.0);
    print strFmt("The Arc Tangent of 1.0 is %1", r);
    pause;
}

See also

acos Function

asin Function

cos Function

cosh Function

sin Function

sinh Function

tan Function

tanh Function

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).