acot

Returns the inverse cotangent (in radians) for each element of the argument.

Syntax

R = acot(a)

Inputs

a
Dimension: scalar | vector | matrix

Outputs

R
The angle result (in radians).

Examples

Scalar input:
R = acot(sqrt(3)/3)
R = 1.04719755
Matrix input:
R = acot([0, sqrt(3)/3; sqrt(3), 1])
R = [Matrix] 2 x 2
  1.57080  1.04720
  0.52360  0.78540