math.cosh() function

math.cosh() returns the hyperbolic cosine of x.

Function type signature
(x: float) => float

For more information, see Function type signatures.

Parameters

x

(Required) Value to operate on.

Examples

Use math.cosh in map

import "math"
import "sampledata"

sampledata.float()
    |> map(fn: (r) => ({_time: r._time, _value: math.cosh(x: r._value)}))

Was this page helpful?

Thank you for your feedback!