math.remainder() function
The math.remainder()
function returns the IEEE 754 floating-point remainder of x / y
.
Output data type: Float
import "math"
math.remainder(x: 21.0, y: 4.0)
// Returns 1.0
Parameters
x
The numerator used in the operation.
Data type: Float
y
The denominator used in the operation.
Data type: Float
Special cases
math.remainder(x: ±Inf, y:y) // Returns NaN
math.remainder(x: NaN, y:y) // Returns NaN
math.remainder(x:x, y: 0) // Returns NaN
math.remainder(x:x, y: ±Inf) // Returns x
math.remainder(x:x, y: NaN) // Returns NaN
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.