Documentation

math.ldexp() function

math.ldexp() is the inverse of math.frexp(). It returns frac x 2**exp.

Function type signature
(exp: int, frac: float) => float
For more information, see Function type signatures.

Parameters

frac

(Required) Fraction to use in the operation.

exp

(Required) Exponent to use in the operation.

Examples

Return the inverse of math.frexp

import "math"

math.ldexp(frac: 0.5, exp: 6)// 32.0

Use math.ldexp in map

import "math"

data
    |> map(fn: (r) => ({_time: r._time, tag: r.tag, _value: math.ldexp(frac: r.frac, exp: r.exp)}))

View example input and output


Was this page helpful?

Thank you for your feedback!


Introducing InfluxDB 3.0

The new core of InfluxDB built with Rust and Apache Arrow. Available today in InfluxDB Cloud Dedicated.

Learn more

State of the InfluxDB Cloud Serverless documentation

The new documentation for InfluxDB Cloud Serverless is a work in progress. We are adding new information and content almost daily. Thank you for your patience!

If there is specific information you’re looking for, please submit a documentation issue.