summaryrefslogtreecommitdiff
path: root/doc/utils.texi
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2017-01-29 10:26:16 +0100
committerPaul B Mahol <onemda@gmail.com>2017-01-30 11:04:31 +0100
commit13564fc24d8248a1f9a987ce1bbd483c72609438 (patch)
treecbab3c9c0aa8fba5431c411d0bc590c5d5f4946e /doc/utils.texi
parent036e12b225b2869861d1449534dec94bd491559e (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.texi3
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.