acotd
Returns the inverse cotangent (in degrees) for each element of the argument.
Syntax
R = acotd(a)
Inputs
- a
- Dimension: scalar | vector | matrix
Outputs
- R
- The angle result (in degrees).
Examples
Scalar input:
R = acotd(sqrt(3)/3)
R = 60
Matrix input:
R = acotd([0, sqrt(3)/3; sqrt(3), 1])
R = [Matrix] 2 x 2
90.00000 60.00000
30.00000 45.00000
Version History
2021