diff options
author | Haixia Shi <hshi@meta.com> | 2024-01-14 19:40:48 +0000 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2024-01-16 01:07:51 +0100 |
commit | e664f4465ab0f76adcf2452e85741ee468f507b7 (patch) | |
tree | 7d6bed079bd5dbe5300f16ebae79b913084ff5df /doc | |
parent | ac40c3bb07781e72f3eb1e30ea450019cc1f6302 (diff) | |
download | ffmpeg-e664f4465ab0f76adcf2452e85741ee468f507b7.tar.gz |
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>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/utils.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/utils.texi b/doc/utils.texi index 0c4f146f4f..76e704fc3c 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -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) |