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

906 B

title description menu weight
math.mod() function The math.mod() function returns the floating-point remainder of `x`/`y`. The magnitude of the result is less than `y` and its sign agrees with that of `x`.
v2_0_ref
name parent
math.mod Math
301

The math.mod() function returns the floating-point remainder of x/y. The magnitude of the result is less than y and its sign agrees with that of x.

Output data type: Float

import "math"

math.mod(x: 1.23, y: 4.56)

// Returns 1.23

Parameters

x

The X value used in the operation.

Data type: Float

y

The Y value used in the operation.

Data type: Float

Special cases

math.mod(x: ±Inf, y:y)  // Returns NaN
math.mod(x: NaN, y:y)   // Returns NaN
math.mod(x:x, y: 0)     // Returns NaN
math.mod(x:x, y: ±Inf)  // Returns x
math.mod(x:x, y: NaN)   // Returns NaN