atand

Returns the inverse tangent (in degrees) for each element of the argument.

Syntax

R = atand(a)

Inputs

a
Dimension: scalar | vector | matrix

Outputs

R
The angle result (in degrees).

Examples

Scalar input:
R = atand(sqrt(3)/3)
R = 30
Matrix input:
R = atand([0, sqrt(3)/3; sqrt(3), 1])
R = [Matrix] 2 x 2
  0  30
  60  45