Antilog2 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Template:Float:Antilog2 subtitle}}
{{Template:Float:Antilog2 subtitle}}


This [[Intrinsic classes|intrinsic]] function returns a number that is the base-2 [http://en.wikipedia.org/wiki/Antilog#Antilogarithms anti-logarithm] (or 2's exponent)
The <var>antilog2</var> [[Intrinsic classes|intrinsic]] function returns a number that is the base-2 [http://en.wikipedia.org/wiki/Antilog#Antilogarithms anti-logarithm] (or 2's exponent)
of the method object value.
of the method object value. The result is '<code>2</code>', the base-2 logarithmic base, raised to the power of the method object value.
The result is ''''2'''', the base-2 logarithmic base,
raised to the power of the method object value.


Available as of version 7.3 of the [[Sirius Mods]], the AntiLog2 function is
an object-oriented version of the [[$Exp2|$Exp2 function]].
==Syntax==
==Syntax==
{{Template:Float:Antilog2 syntax}}
{{Template:Float:Antilog2 syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt>%value
<tr><th>%number</th>
<dd>A numeric variable to receive the base-2 antilog of the method object.
<td>A numeric variable to receive the base-2 antilog of the method object. </td></tr>
<dt>number
<dd>A Float value.
</dl>
==Examples==
The following statement returns ''''-3:antilog2 = 0.125''''.
    [[Intrinsic classes#printtext|PrintText]] {~} = {'-3':antiLog2}


===See also===
<tr><th>float</th>
[[List of intrinsic Float methods]]
<td>A <var>Float</var> value.</td></tr>
[[Category: Intrinsic Float methods|AntiLog2 function]]
</table>
[[Category: Intrinsic methods]]


==Usage notes==
<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>


==Examples==
The following statement returns '<code>-3:antilog2 = 0.125</code>'.
<p class="code">[[PrintText statement|printText]] {~} = {'-3':antiLog2}
</p>


<!--
==See also==
<section begin=dpl_desc />
{{Template:Float:Antilog2 footer}}
Antilog base 2 of number
<section end=dpl_desc />
-->

Latest revision as of 17:14, 2 November 2012

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|Sirius Mods Version 7.3.

Examples

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

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

See also