Antilog2 (Float function): Difference between revisions
Jump to navigation
Jump to search
m (→Examples) |
mNo edit summary |
||
Line 23: | Line 23: | ||
[[Category: Intrinsic Float methods|AntiLog2 function]] | [[Category: Intrinsic Float methods|AntiLog2 function]] | ||
[[Category: Intrinsic methods]] | [[Category: Intrinsic methods]] | ||
<!-- | |||
<section begin=dpl_desc /> | |||
Antilog base 2 of number | |||
<section end=dpl_desc /> | |||
--> | |||
[[Category:System methods]] | [[Category:System methods]] |
Revision as of 12:25, 22 December 2010
This 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.
Available as of version 7.3 of the Sirius Mods, the AntiLog2 function is an object-oriented version of the $Exp2 function.
AntiLog2 syntax
%value = number:antiLog2
Syntax terms
- %value
- A numeric variable to receive the base-2 antilog of the method object.
- number
- A Float value.
Examples
The following statement returns '-3:antilog2 = 0.125'.
PrintText {~} = {'-3':antiLog2}