acscd
acscd(x)
Compute the inverse cosecant of x
, where the output is in degrees
Examples
julia> acscd(2)
30.000000000000004
julia> acscd(Inf)
0.0
julia> acscd(1)
90.0
This example computes the inverse cosecant of 1
, which is equal to 90
degrees.
julia> acscd(0.5)
30.0
This example computes the inverse cosecant of 0.5
, which is equal to 30
degrees.
julia> acscd(-1)
-90.0
This example computes the inverse cosecant of -1
, which is equal to -90
degrees.
julia> acscd(2)
NaN
This example computes the inverse cosecant of 2
, which is not defined and therefore returns NaN
(Not a Number).
See Also
acos, acosd, acosh, acot, acotd, acoth, acsc, acscd, acsch, asec, asecd, asech, asin, asind, asinh, atan, atan2, atand, atanh, cos, cosc, cosd, cosh, cospi, cot, cotd, coth, csc, cscd, csch, deg2rad, rad2deg, sin, sinc, sind, sinh, sinpi, tan, tand, tanh,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.