docs-v2/content/influxdb/cloud/reference/flux/stdlib/math/modf.md

811 B

title description aliases menu weight
math.modf() function The math.modf() function returns integer and fractional floating-point numbers that sum to `f`. Both values have the same sign as `f`.
/influxdb/cloud/reference/flux/functions/math/modf/
influxdb_cloud_ref
name parent
math.modf Math
301

The math.modf() function returns integer and fractional floating-point numbers that sum to f. Both values have the same sign as f.

Output data format: Record

import "math"

math.modf(f: 3.14)

// Returns {int: 3, frac: 0.14000000000000012}

Parameters

f

The value used in the operation.

Data type: Float

Special cases

math.modf(f: ±Inf) // Returns {int: ±Inf, frac: NaN}
math.modf(f: NaN)  // Returns {int: NaN, frac: NaN}