diff options
author | Paul B Mahol | 2017-01-29 10:26:16 +0100 |
---|---|---|
committer | Paul B Mahol | 2017-01-30 11:04:31 +0100 |
commit | 13564fc24d8248a1f9a987ce1bbd483c72609438 (patch) | |
tree | cbab3c9c0aa8fba5431c411d0bc590c5d5f4946e /doc/utils.texi | |
parent | 036e12b225b2869861d1449534dec94bd491559e (diff) |
avutil/eval: add atan2 function
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/utils.texi')
-rw-r--r-- | doc/utils.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/utils.texi b/doc/utils.texi index 30a962ac0e..1734439459 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -776,6 +776,9 @@ Compute arcsine of @var{x}. @item atan(x) Compute arctangent of @var{x}. +@item atan2(x, y) +Compute principal value of the arc tangent of @var{y}/@var{x}. + @item between(x, min, max) Return 1 if @var{x} is greater than or equal to @var{min} and lesser than or equal to @var{max}, 0 otherwise. |