Log10 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 9: Line 9:
{{Template:Float:Log10 syntax}}
{{Template:Float:Log10 syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt>%value
<tr><th>%value </th>
<dd>A numeric variable to receive the base-10 log of the method object.
<td>A numeric variable to receive the base-10 log of the method object. </td></tr>
<dt>number
<tr><th>number </th>
<dd>A Float value.
<td>A Float value.</td></tr>
</dl>
</table>
==Usage notes==
==Usage notes==
*If ''number'' is not greater than zero, the request is cancelled.
*If ''number'' is not greater than zero, the request is cancelled.

Revision as of 13:44, 19 January 2011

Log base 10 of a number (Float class)


This intrinsic function returns a number that is the logarithm base-10 of the method object value.

Available as of version 7.3 of the Sirius Mods, the Log10 function is an object-oriented version of the $Log10 function.

Syntax

%number = float:Log10

Syntax terms

%value A numeric variable to receive the base-10 log of the method object.
number A Float value.

Usage notes

  • If number is not greater than zero, the request is cancelled.

Examples

The following statement returns "3.14159:log10 = 0.497149505861123".

   PrintText {~} = {3.14159:log10}

See also

List of intrinsic Float methods