SHIP:Sail:log10

From Serious Documentation
Jump to: navigation, search
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...