acsc function

double acsc(
  1. double hypotenuse
)

Trigonometric principal Arc Cosecant in radian.

Implementation

double acsc(double hypotenuse) {
  return asin(1 / hypotenuse);
}