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

713 B

title description aliases menu weight
math.float64bits() function The math.float64bits() function returns the IEEE 754 binary representation of `f`, with the sign bit of `f` and the result in the same bit position.
/influxdb/cloud/reference/flux/functions/math/float64bits/
influxdb_cloud_ref
name parent
math.float64bits Math
301

The math.float64bits() function returns the IEEE 754 binary representation of f, with the sign bit of f and the result in the same bit position.

Output data type: UInteger

import "math"

math.float64bits(f: 1234.56)

// Returns 4653144467747100426

Parameters

f

The value used in the operation.

Data type: Float