exp10 Function [AX 2012]

Updated: December 10, 2009

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

Retrieves the base 10 antilogarithm of the specified real number.


real exp10(real decimal)

Parameter

Description

decimal

The real number for which to calculate the base 10 antilogarithm.

The 10-based antilogarithm of the value of the decimal parameter.

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;
}

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

Community Additions

ADD
Show: