Antilog2 (Float function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (→Examples) |
||
Line 20: | Line 20: | ||
==Examples== | ==Examples== | ||
The following statement returns '<code>-3:antilog2 = 0.125</code>'. | |||
<p class="code">[[PrintText statement|printText]] {~} = {'-3':antiLog2} | <p class="code">[[PrintText statement|printText]] {~} = {'-3':antiLog2} | ||
</p | </p> | ||
==See also== | ==See also== | ||
{{Template:Float:Antilog2 footer}} | {{Template:Float:Antilog2 footer}} |
Revision as of 21:56, 11 April 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 Version 7.3.
Examples
The following statement returns '-3:antilog2 = 0.125
'.
printText {~} = {'-3':antiLog2}