Documentation

math.modf() function

math.modf() returns integer and fractional floating-point numbers that sum to f.

Both values have the same sign as f.

Function type signature
(f: float) => {int: float, frac: float}

For more information, see Function type signatures.

Parameters

f

(Required) Value to operate on.

Examples

Return the integer and float that sum to a value

import "math"

math.modf(f: 3.14)// {frac: 0.14000000000000012, int: 3}

Use math.modf in map

import "math"
import "sampledata"

sampledata.float()
    |> map(
        fn: (r) => {
            result = math.modf(f: r._value)

            return {_time: r._time, int: result.int, frac: result.frac}
        },
    )

View example input and output


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more