Function acoth

Source
pub fn acoth(x: FLOAT) -> FLOAT
Expand description

Returns the inverse hyperbolic cotangent of the argument in radians

assert_eq(acoth(1.0), atanh(1.0));
assert_eq(acoth(-1.0), atanh(-1.0));