atan Function

Retrieves the arc tangent of a real number.


real atan(real arg)

Parameter

Description

arg

The number for which to calculate the arc tangent.

The arc tangent of the specified number.

  • aTan(0.36) //Returns 0.35.

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

Community Additions

ADD
Show: