Commit e664f446 authored by Haixia Shi's avatar Haixia Shi Committed by Stefano Sabatini

doc/utils: fix atan2 parameter order

The C library function double atan2(double y, double x) takes y as the first
parameter and x as the second parameter.
Signed-off-by: 's avatarHaixia Shi <hshi@meta.com>
parent ac40c3bb
......@@ -815,7 +815,7 @@ Compute arcsine of @var{x}.
@item atan(x)
Compute arctangent of @var{x}.
@item atan2(x, y)
@item atan2(y, x)
Compute principal value of the arc tangent of @var{y}/@var{x}.
@item between(x, min, max)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment