Antilog10 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (printtext)
Line 19: Line 19:


==Examples==
==Examples==
<ol><li>The following statement returns '<code>2:antiLog10 = 100</code>'.
The following statement returns '<code>2:antiLog10 = 100</code>'.
<p class="code">[[PrintText statement|printText]] {~} = {2:antiLog10}
<p class="code">[[PrintText statement|printText]] {~} = {2:antiLog10}
</p></ol>
</p>


==See also==
==See also==
{{Template:Float:Antilog10 footer}}
{{Template:Float:Antilog10 footer}}

Revision as of 15:43, 2 November 2012

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

  • AntiLog10 is an object-oriented version of the $Exp10 function.
  • Available as of Sirius Mods Version 7.3.

Examples

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

printText {~} = {2:antiLog10}

See also