Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
4a919627
Commit
4a919627
authored
Aug 21, 2012
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc/eval: add missing documentation of functions
parent
4a32b30e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
eval.texi
doc/eval.texi
+46
-0
No files found.
doc/eval.texi
View file @
4a919627
...
@@ -21,32 +21,78 @@ The following unary operators are available: @code{+}, @code{-}.
...
@@ -21,32 +21,78 @@ The following unary operators are available: @code{+}, @code{-}.
The following functions are available:
The following functions are available:
@table @option
@table @option
@item sinh(x)
@item sinh(x)
Compute hyperbolic sine of @var{x}.
@item cosh(x)
@item cosh(x)
Compute hyperbolic cosine of @var{x}.
@item tanh(x)
@item tanh(x)
Compute hyperbolic tangent of @var{x}.
@item sin(x)
@item sin(x)
Compute sine of @var{x}.
@item cos(x)
@item cos(x)
Compute cosine of @var{x}.
@item tan(x)
@item tan(x)
Compute tangent of @var{x}.
@item atan(x)
@item atan(x)
Compute arctangent of @var{x}.
@item asin(x)
@item asin(x)
Compute arcsine of @var{x}.
@item acos(x)
@item acos(x)
Compute arccosine of @var{x}.
@item exp(x)
@item exp(x)
Compute exponential of @var{x} (with base @code{e}, the Euler's number).
@item log(x)
@item log(x)
Compute natural logarithm of @var{x}.
@item abs(x)
@item abs(x)
Compute absolute value of @var{x}.
@item squish(x)
@item squish(x)
Compute expression @code{1/(1 + exp(4*x))}.
@item gauss(x)
@item gauss(x)
Compute Gauss function of @var{x}, corresponding to
@code{exp(-x*x/2) / sqrt(2*PI)}.
@item isinf(x)
@item isinf(x)
Return 1.0 if @var{x} is +/-INFINITY, 0.0 otherwise.
Return 1.0 if @var{x} is +/-INFINITY, 0.0 otherwise.
@item isnan(x)
@item isnan(x)
Return 1.0 if @var{x} is NAN, 0.0 otherwise.
Return 1.0 if @var{x} is NAN, 0.0 otherwise.
@item mod(x, y)
@item mod(x, y)
Compute the remainder of division of @var{x} by @var{y}.
@item max(x, y)
@item max(x, y)
Return the maximum between @var{x} and @var{y}.
@item min(x, y)
@item min(x, y)
Return the maximum between @var{x} and @var{y}.
@item eq(x, y)
@item eq(x, y)
Return 1 if @var{x} and @var{y} are equivalent, 0 otherwise.
@item gte(x, y)
@item gte(x, y)
Return 1 if @var{x} is greater than or equal to @var{y}, 0 otherwise.
@item gt(x, y)
@item gt(x, y)
Return 1 if @var{x} is greater than @var{y}, 0 otherwise.
@item lte(x, y)
@item lte(x, y)
Return 1 if @var{x} is lesser than or equal to @var{y}, 0 otherwise.
@item lt(x, y)
@item lt(x, y)
Return 1 if @var{x} is lesser than @var{y}, 0 otherwise.
@item st(var, expr)
@item st(var, expr)
Allow to store the value of the expression @var{expr} in an internal
Allow to store the value of the expression @var{expr} in an internal
variable. @var{var} specifies the number of the variable where to
variable. @var{var} specifies the number of the variable where to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment