<< atan2 | Trigonometric functions | atand >> |
d = atan2d(y, x) |
a numeric value
a numeric value
a numeric value
d = atan2d(y, x) returns the four-quadrant inverse tangent (tan-1) of y and x, which must be real.
x = [1 0 -1 0];
y = [0 1 0 -1];
d = atan2d(y, x)
tand.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET