Antilog2 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax diagram to revised template; fix tags and some links; still some incomplete / unfound links)
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> <var>[[Intrinsic classes|intrinsic]]</var> 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 <var class=product>Sirius Mods</var>, 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===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%value</th>
<tr><th>%number</th>
<td>A numeric variable to receive the base-2 antilog of the method object. </td></tr>
<td>A numeric variable to receive the base-2 antilog of the method object. </td></tr>
<tr><th>number</th>
<tr><th>float</th>
<td>A <var>Float</var> value.</td></tr>
<td>A <var>Float</var> value.</td></tr>
</table>
</table>
==Usage notes==
<ul><li>Available as of <var class="product">[[Sirius Mods]]</var> Version 7.3.
</ul>
==Examples==
==Examples==
The following statement returns ''''-3:antilog2 = 0.125''''.
<ol><li>The following statement returns '<code>-3:antilog2 = 0.125</code>'.
<p class="code">[[Intrinsic classes#printtext|PrintText]] {~} = {'-3':antiLog2}
<p class="code">printText {~} = {'-3':antiLog2}
</p></ol>


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

Revision as of 06:42, 3 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

Examples

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

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

See also

  • For details of the printtext statement, please see printText.
  • antilog2 is an object-oriented version of the $Exp2 function.