atan Function

Retrieves the arc tangent (inverse tangent) of a real number.


real atan(real arg)

Parameter

Description

arg

The number to calculate the tangent of.

The arc tangent of arg.

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: