exp10 Function

Retrieves the 10-based antilogarithm of the real number specified by decimal.


real exp10(real decimal)

Parameter

Description

decimal

The real number to calculate the 10-based antilogarithm of.

The 10-based antilogarithm of decimal.

static void exp10Example(Args _arg)
{
    real r1;
    real r2;
    ;
 
    r1 = exp(2.302585093);
    r2 = exp10(2.302585093);
    print strFmt("exp of 2.302585093 is %1", r1);
    print strFmt("exp10 of 230258 is %1", r2);
    pause;
}

Community Additions

ADD
Show: