Difference between revisions of "SHIP:Sail:log10"

From Serious Documentation
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
{{SailFuncTableStart|}}<onlyinclude>
 
{{SailFuncTableStart|}}<onlyinclude>
|{{SailFunc|log10}}||{{DataType|Float}}||style="text-align:center;"|v5.1.0||Return the base 10 log of a number{{v5}}</onlyinclude>
+
|{{SailFunc|log10}}||{{DataType|Float}}||style="text-align:center;"|v5.1.0||Return the base 10 log of a number</onlyinclude>
 
|}
 
|}
 
== See Also: ==
 
== See Also: ==
Line 41: Line 41:
 
|}
 
|}
  
[[Categories: Numeric Functions]]
+
[[Category:Numeric Functions]]

Latest revision as of 10:07, 14 October 2016

Function Returns Introduced Description
log10 Float v5.1.0 Return the base 10 log of a number

See Also:

Prototype

Float log10(Float n);

Parameters/Return Value

Parameter Data Type Description
n Float the number to take the base 10 log of
Return Float the result of log10 n

Detailed Description

The log10() function returns the base 10 log of a number.

Examples

Example Result Notes
log10(1); 0.000000...
log10(5); 0.6989700...
log10(1000); 3.000000...