Antilog10 (Float function)

From m204wiki
Revision as of 06:37, 3 February 2011 by Goff (talk | contribs) (match syntax diagram to revised template; fix tags and some links; still some incomplete / unfound links)
Jump to navigation Jump to search

Antilog base 10 of a number (Float class)


The antilog10 intrinsic function returns a number that is the base-10 anti-logarithm (or 10's exponent) of the method object value. The result is '10', the base-10 logarithmic base, raised to the power of the method object value.

Syntax

%number = float:Antilog10

Syntax terms

%number A numeric variable to receive the base-10 antilog10 of the method object.
float A Float value.

Usage notes

Examples

  1. The following statement returns '2:antiLog10 = 100'.

    printText {~} = {2:antiLog10}

See also

  • For details of the printtext statement, please see printText.
  • AntiLog10 is an object-oriented version of the $Exp10 function.