List of utility methods to do acot
double | acot(double x) Returns the arc cotangent of a value. return Math.atan(1.0 / x);
|
double | acot(double x) acot if (x != 0) { return Math.atan(1 / x); } else { throw new ArithmeticException(); |
double | acot(final T value) Return the arcus cotangens of value in radian. double rc; double d = value.doubleValue(); if (0D == d) { rc = PI_HALF; else if (d > 0D) { rc = Math.atan(1D / d); else { rc = Math.PI + Math.atan(1D / d); return rc; |