1.3 KiB
1.3 KiB
title | description | menu | weight | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
math.cosh() function | `math.cosh()` returns the hyperbolic cosine of `x`. |
|
101 |
math.cosh()
returns the hyperbolic cosine of x
.
Function type signature
(x: float) => float
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Parameters
x
({{< req >}}) 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)}))