$Log10 or $Log 10: Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (add link)
No edit summary
Line 9: Line 9:
<p class="syntax"><span class="term">%num</span><span class="literal"> = $Log_10(</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, an error message is printed and a 0 is returned.
 
==Usage notes==
<ul>
<li>If ''x'' is not greater than 0,
an error message is printed and the request is cancelled.</li>
</ul>
 


[[Category: Mathematical $functions]]
[[Category: Mathematical $functions]]

Revision as of 11:38, 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.