exp10 Function

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)

Parameters

Parameter

Description

decimal

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

Return Value

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

Example

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

See also

exp Function

logN Function

log10 Function

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