Log2 (Float function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
Line 18: | Line 18: | ||
==Examples== | ==Examples== | ||
<ol><li>The following statement returns | <ol><li>The following statement returns <code>3.14159:log2 = 1.65149491087943</code>: | ||
<p class="code">[[PrintText statement|printText]] {~} = {3.14159:log2} | <p class="code">[[PrintText statement|printText]] {~} = {3.14159:log2} | ||
</p></ol> | </p></ol> |
Revision as of 19:20, 8 February 2012
Log base 2 of a number (Float class)
The $Log2 intrinsic function returns a number that is the logarithm base-2 of the method object value.
Syntax
%number = float:Log2
Syntax terms
%number | A numeric variable to receive the base-2 log of the method object. |
---|---|
float | The input method object Float value. |
Usage notes
- If float is less than or equal to zero, the request is cancelled.
- Log2 is available as of Sirius Mods Version 7.3.
Examples
- The following statement returns
3.14159:log2 = 1.65149491087943
:printText {~} = {3.14159:log2}
See also
- Log2 function is an object-oriented version of the $Log2 function.