math.atanh() function
The math.atanh()
function returns the inverse hyperbolic tangent of x
.
Output data type: Float
import "math"
math.atanh(x: 0.22)
// Returns 0.22365610902183242
Parameters
x
The value used in the operation.
x
should be greater than -1 and less than 1.
Otherwise, the operation will return NaN
.
Data type: Float
Special cases
math.atanh(x: 1) // Returns +Inf
math.atanh(x: ±0) // Returns ±0
math.atanh(x: -1) // Returns -Inf
math.atanh(x: <-1) // Returns NaN
math.atanh(x: >1) // Returns NaN
math.atanh(x: NaN) // Returns NaN
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.