pub fn acoth(x: FLOAT) -> FLOAT
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));