1
0
Fork 0

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: Haixia Shi <hshi@meta.com>
This commit is contained in:
Haixia Shi 2024-01-14 19:40:48 +00:00 committed by Stefano Sabatini
parent ac40c3bb07
commit e664f4465a
1 changed files with 1 additions and 1 deletions

View File

@ -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)