acotd
acotd(x)
Compute the inverse cotangent of x
, where the output is in degrees
Examples
julia> acotd(1)
45.0
julia> acotd(0)
90.0
julia> acotd(-1)
-45.0
The acotd
function calculates the inverse cotangent of a given value x
, where the output is in degrees. Here are some examples:
-
Calculate the inverse cotangent of 1:
julia> acotd(1) 45.0
The inverse cotangent of 1 is 45 degrees.
-
Calculate the inverse cotangent of 0:
julia> acotd(0) 90.0
The inverse cotangent of 0 is 90 degrees.
- Calculate the inverse cotangent of -1:
julia> acotd(-1) -45.0
The inverse cotangent of -1 is -45 degrees.
Note: acotd
returns a Float64
value representing the result in degrees.
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.