Antilog2 (Float function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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