Antilog10 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 11: Line 11:
{{Template:Float:Antilog10 syntax}}
{{Template:Float:Antilog10 syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt>%value
<tr><th>%value </th>
<dd>A numeric variable to receive the base-10 antilog of the method object.
<td>A numeric variable to receive the base-10 antilog of the method object. </td></tr>
<dt>number
<tr><th>number </th>
<dd>A Float value.
<td>A Float value.</td></tr>
</dl>
</table>
==Examples==
==Examples==
The following statement returns ''''2:antiLog10 = 100''''.
The following statement returns ''''2:antiLog10 = 100''''.

Revision as of 13:44, 19 January 2011

Antilog base 10 of a number (Float class)


This 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.

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

Syntax

%number = float:Antilog10

Syntax terms

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

Examples

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

   PrintText {~} = {2:antiLog10}

See also

List of intrinsic Float methods