Log10 (Float function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:Float:Log10 subtitle}}
{{Template:Float:Log10 subtitle}}


This [[Intrinsic classes|intrinsic]] function returns a number that is the [http://en.wikipedia.org/wiki/Logarithm logarithm] base-10
The <var>Log10</var> [[Intrinsic classes|intrinsic]] function returns a number that is the [http://en.wikipedia.org/wiki/Logarithm logarithm] base-10 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>Log10</var> function is
an object-oriented version of the <var>$Log10</var> function.
==Syntax==
==Syntax==
{{Template:Float:Log10 syntax}}
{{Template:Float:Log10 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-10 log of the method object. </td></tr>
<td>A numeric variable to receive the base-10 log of the method object. </td></tr>
<tr><th>number</th>
 
<td>A <var>Float</var> value.</td></tr>
<tr><th>float</th>
<td>The input method object <var class="term">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>Log10</var> is available as of <var class="product">Sirius Mods</var> Version 7.3.
</ul>
 
==Examples==
==Examples==
The following statement returns "<code>3.14159:log10 = 0.497149505861123</code>".
<p class="code">[[PrintText statement|printText]] {~} = {3.14159:log10}
</p>


The following statement returns "''3.14159:log10 = 0.497149505861123''".
==See also==
<p class="code">[[Intrinsic classes#printtext|PrintText]] {~} = {3.14159:log10}
<ul>
<li><var>Log10</var> is an object-oriented version of the <var>[[$Log10]]</var> function.
</ul>


</p>
==See also==
{{Template:Float:Log10 footer}}
{{Template:Float:Log10 footer}}
[[List of intrinsic Float methods]]
<!--
<section begin=dpl_desc />
Log base 10 of number
<section end=dpl_desc />
-->

Latest revision as of 17:56, 2 November 2012

Log base 10 of a number (Float class)


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

Syntax

%number = float:Log10

Syntax terms

%number A numeric variable to receive the base-10 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.
  • Log10 is available as of Sirius Mods Version 7.3.

Examples

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

printText {~} = {3.14159:log10}

See also

  • Log10 is an object-oriented version of the $Log10 function.