atan2
Computes the four-quadrant inverse tangent.
📝Syntax
res = atan2(y, x)
📥Input Arguments
Parameter Description
y a numeric value (double or single real)
x a numeric value (double or single real)
📤Output Arguments
Parameter Description
res a numeric value
📄Description

atan2 computes the four-quadrant inverse tangent.

💡Examples
atan2(1, 0)
🔗See Also
atan
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub