Antilog2 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (fix $exp2 link (even thou still not found).)
m (printtext)
Line 21: Line 21:
==Examples==
==Examples==
<ol><li>The following statement returns '<code>-3:antilog2 = 0.125</code>'.
<ol><li>The following statement returns '<code>-3:antilog2 = 0.125</code>'.
<p class="code">printText {~} = {'-3':antiLog2}
<p class="code">[[PrintText statement|printText]] {~} = {'-3':antiLog2}
</p></ol>
</p></ol>


==See also==
==See also==
<ul><li><var>PrintText</var> is described in the <var>[[Intrinsic classes#printtext|"System Intrinsic Class"]]</var>.
</ul>
{{Template:Float:Antilog2 footer}}
{{Template:Float:Antilog2 footer}}

Revision as of 10:54, 22 February 2011

Antilog base 2 of a number (Float class)


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

Syntax

%number = float:Antilog2

Syntax terms

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

Usage notes

  • antilog2 is an object-oriented version of the $Exp2 function.
  • antilog2 is available as of "Sirius Mods" Version 7.3.

Examples

  1. The following statement returns '-3:antilog2 = 0.125'.

    printText {~} = {'-3':antiLog2}

See also