Function acothd

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

Returns the inverse hyperbolic cotangent of the argument in degrees

assert_eq(acothd(1.0), atanhd(1.0));
assert_eq(acothd(-1.0), atanhd(-1.0));