Get cosecant of an angle
=CSC(number)
| Parameter | Description |
|---|---|
number |
The angle provided in radians. |
The CSC function returns the cosecant of an angle provided in radians. In geometric terms, the cosecant of an angle is equal to the ratio of a right t
=CSC(PI()/6) // Returns 2.0
The CSC function expects radians. To supply an angle to CSC in degrees, multiply the angle by PI()/180 or use the RADIANS function to convert to radia
=CSC(60*PI()/180)
=CSC(RADIANS(60))
The graph of cosecant, shown above, visualizes the output of the function for angles from 0 to a full rotation. The function has vertical asymptotes w
=CSC(angle)=1/SIN(angle)