$Log10 or $Log 10: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with " <span class="pageSubtitle">Log base 10 function</span> <p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for ...")
 
No edit summary
 
(10 intermediate revisions by 7 users not shown)
Line 1: Line 1:
 
{{DISPLAYTITLE:$Log10 or $Log_10}}
<span class="pageSubtitle">Log base 10 function</span>
<span class="pageSubtitle">Log base 10 function</span>
<p class="warning">Most Sirius $functions have been deprecated in favor of Object Oriented
<p class="warn"><b>Note:</b> Many Rocket $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the <var>$Log10</var> function is the <var>[[Log10 (Float function)|Log10]]</var> function. </p>
methods.
The OO equivalent for the
<var>$Log10</var>
function is the <var>[[Log10 (Float function)|Log10]]</var> function.</p>
[[Category: Mathematical $functions]]
<p>
<p>
</p>
The <var>$Log10</var> function (or its alias, <var>$Log_10</var>) returns the base-10 logarithm of the number ''x'' argument. </p>
 
The <var>$Log10</var> function returns the base-10 logarithm
of the number ''x''.


==Syntax==
==Syntax==
<p class="syntax"><span class="term">%num</span><span class="literal"> = $Log10(</span><span class="term">x</span><span class="literal">)</span>  </p>
<p class="syntax"><span class="term">%num</span><span class="literal"> = $Log10(</span><span class="term">x</span><span class="literal">)</span>  </p>
<p class="syntax"><span class="term">%num</span><span class="literal"> = $Log_10(</span><span class="term">x</span><span class="literal">)</span>  </p>


If ''x'' is not greater than 0,
==Usage notes==
an error message is printed and a 0 is returned.
<ul>
<li>If ''x'' is not greater than 0,
an error message is printed and the request is cancelled.</li>
</ul>


{{Template:Math $functions note}}
 
[[Category: Mathematical $functions]]

Latest revision as of 11:39, 21 December 2017

Log base 10 function

Note: Many Rocket $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $Log10 function is the Log10 function.

The $Log10 function (or its alias, $Log_10) returns the base-10 logarithm of the number x argument.

Syntax

%num = $Log10(x)

%num = $Log_10(x)

Usage notes

  • If x is not greater than 0, an error message is printed and the request is cancelled.