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

587 B

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

The math.log() function returns the natural logarithm of x.

Output data type: Float

import "math"

math.log(x: 3.14)

// Returns 1.144222799920162

Parameters

x

The value used in the operation.

Data type: Float

Special cases

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