pub fn acot(x: FLOAT) -> FLOAT
Returns the inverse of the cotangent in radians
assert_eq(acot(1.0), pi/4);
assert_eq(acot(-1.0), -pi/4);
assert_eq(acot(0.0), pi/2);