Back to Influxdb

math.isInf() function

content/flux/v0/stdlib/math/isinf.md

latest3.1 KB
Original Source
<!------------------------------------------------------------------------------ IMPORTANT: This page was generated from comments in the Flux source code. Any edits made directly to this page will be overwritten the next time the documentation is generated. To make updates to this documentation, update the function comments above the function definition in the Flux source code: https://github.com/influxdata/flux/blob/master/stdlib/math/math.flux#L1131-L1131 Contributing to Flux: https://github.com/influxdata/flux#contributing Fluxdoc syntax: https://github.com/influxdata/flux/blob/master/docs/fluxdoc.md ------------------------------------------------------------------------------->

math.isInf() reports whether f is an infinity, according to sign.

If sign > 0, math.isInf reports whether f is positive infinity. If sign < 0, math.isInf reports whether f is negative infinity. If sign == 0, math.isInf reports whether f is either infinity.

Function type signature
js
(f: float, sign: int) => bool

{{% caption %}} For more information, see Function type signatures. {{% /caption %}}

Parameters

f

({{< req >}}) is the value used in the evaluation.

sign

({{< req >}}) is the sign used in the evaluation.

Examples

Test if a value is an infinity value

js
import "math"

math.isInf(f: 2.12, sign: 3)// false


Use math.isInf in map

js
import "math"

data
    |> map(fn: (r) => ({r with _value: math.isInf(f: r._value, sign: 1)}))

{{< expand-wrapper >}} {{% expand "View example input and output" %}}

Input data

_time*tag_value
2021-01-01T00:00:00Zt1-2.18
2021-01-01T00:00:10Zt1+Inf
2021-01-01T00:00:20Zt17.35
2021-01-01T00:00:30Zt1+Inf
2021-01-01T00:00:40Zt1+Inf
2021-01-01T00:00:50Zt14.43
_time*tag_value
2021-01-01T00:00:00Zt2+Inf
2021-01-01T00:00:10Zt24.97
2021-01-01T00:00:20Zt2-3.75
2021-01-01T00:00:30Zt219.77
2021-01-01T00:00:40Zt2+Inf
2021-01-01T00:00:50Zt21.86

Output data

_time_value*tag
2021-01-01T00:00:00Zfalset1
2021-01-01T00:00:10Ztruet1
2021-01-01T00:00:20Zfalset1
2021-01-01T00:00:30Ztruet1
2021-01-01T00:00:40Ztruet1
2021-01-01T00:00:50Zfalset1
_time_value*tag
2021-01-01T00:00:00Ztruet2
2021-01-01T00:00:10Zfalset2
2021-01-01T00:00:20Zfalset2
2021-01-01T00:00:30Zfalset2
2021-01-01T00:00:40Ztruet2
2021-01-01T00:00:50Zfalset2

{{% /expand %}} {{< /expand-wrapper >}}