Documentation

math.hypot() function

math.hypot() returns the square root of p*p + q*q, taking care to avoid overflow and underflow.

Function type signature
(p: float, q: float) => float

For more information, see Function type signatures.

Parameters

p

(Required) p-value to use in the operation.

q

(Required) q-value to use in the operation.

Examples

Return the hypotenuse of two values

import "math"

math.hypot(p: 2.0, q: 5.0)// 5.385164807134505

Use math.hypot in map

import "math"

data
    |> map(fn: (r) => ({r with _value: math.hypot(p: r.a, q: r.b)}))

View example input and output


Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Read more