Log2 (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:Log2 subtitle}}
{{Template:Float:Log2 subtitle}}


This [[Intrinsic classes|intrinsic]] function returns a number that is the [http://en.wikipedia.org/wiki/Logarithm logarithm] base-2
The $<var>Log2</var> <var>[[Intrinsic classes|intrinsic]]</var> function returns a number that is the [http://en.wikipedia.org/wiki/Logarithm logarithm] base-2 of the method object value.
of the method object value.


Available as of version 7.3 of the <var class=product>Sirius Mods</var>, the <var>Log2</var> function is
an object-oriented version of the $<var>Log2</var> function.
==Syntax==
==Syntax==
{{Template:Float:Log2 syntax}}
{{Template:Float:Log2 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 log of the method object. </td></tr>
<td>A numeric variable to receive the base-2 log of the method object. </td></tr>
<tr><th>number</th>
<tr><th>float</th>
<td>A <var>Float</var> value.</td></tr>
<td>The input method object <var>Float</var> value.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
*If ''number'' is not greater than zero, the request is cancelled.
<ul><li>If <var class="term">float</var> is less than or equal to zero, the request is cancelled.
<li><var>Log2</var> is available as of <var class="product">[[Sirius Mods|"Sirius Mods"]]</var> Version 7.3.</ul>
 
==Examples==
==Examples==
The following statement returns "''3.14159:log2 = 1.65149491087943''".
<ol><li>The following statement returns "<code>3.14159:log2 = 1.65149491087943</code>''".
<p class="code">[[Intrinsic classes#printtext|PrintText]] {~} = {3.14159:log2}
<p class="code">printText {~} = {3.14159:log2}
</p></ol>


</p>
==See also==
==See also==
<ul><li><var>Log2</var> function is an object-oriented version of the <var>[[$Log2]]</var> function.
<li><var>PrintText</var> is described in the <var>[[Intrinsic classes#printtext|"System Intrinsic Class"]]</var>.</ul>
{{Template:Float:Log2 footer}}
{{Template:Float:Log2 footer}}

Revision as of 01:00, 4 February 2011

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

  1. The following statement returns "3.14159:log2 = 1.65149491087943".

    printText {~} = {3.14159:log2}

See also