Antilog2 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax diagram to revised template; fix tags and some links; still some incomplete / unfound links)
m (fix $exp2 link (even thou still not found).)
Line 15: Line 15:


==Usage notes==
==Usage notes==
<ul><li>Available as of <var class="product">[[Sirius Mods]]</var> Version 7.3.
<ul><li><var>antilog2</var> is an object-oriented version of the <var>[[$Exp2|$Exp2]]</var> function.
<li><var>antilog2</var> is available as of <var class="product">[[Sirius Mods|"Sirius Mods"]]</var> Version 7.3.
</ul>
</ul>


Line 24: Line 25:


==See also==
==See also==
<ul><li>For details of the <var>printtext</var> statement, please see <var>[[Intrinsic classes#printtext|printText]]</var>.
<ul><li><var>PrintText</var> is described in the <var>[[Intrinsic classes#printtext|"System Intrinsic Class"]]</var>.
<li><var>antilog2</var> is an object-oriented version of the [[$Exp2|$Exp2 function]].
</ul>
</ul>
{{Template:Float:Antilog2 footer}}
{{Template:Float:Antilog2 footer}}

Revision as of 10:35, 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