docs-v2/content/v2.0/reference/flux/functions/math/log10.md

606 B

title description menu weight
math.log10() function The math.log10() function returns the decimal logarithm of `x`.
v2_0_ref
name parent
math.log10 Math
301

The math.log10() function returns the decimal logarithm of x.

Output data type: Float

import "math"

math.log10(x: 3.14)

// Returns 0.4969296480732149

Parameters

x

The value used in the operation.

Data type: Float

Special cases

math.log10(x: +Inf) // Returns +Inf
math.log10(x: 0)    // Returns -Inf
math.log10(x: <0)   // Returns NaN
math.log10(x: NaN)  // Returns NaN