Function acotd

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

Returns the inverse of the cotangent in degrees

assert_eq(acotd(1.0), 45.0);
assert_eq(acotd(-1.0), -45.0);
assert_eq(acotd(0.0), 90.0);