mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-26 08:07:27 -04:00
This improves the tests and docs for a few functions, specifically `E`, `FLOOR`, `PI`, `POW`, and `ROUND`. The examples and tested signatures will get copied into the docs and kibana signatures. Co-authored-by: Liam Thompson <32779855+leemthompo@users.noreply.github.com>
56 lines
1.2 KiB
Text
56 lines
1.2 KiB
Text
[[esql-math-functions]]
|
|
==== {esql} mathematical functions
|
|
|
|
++++
|
|
<titleabbrev>Mathematical functions</titleabbrev>
|
|
++++
|
|
|
|
{esql} supports these mathematical functions:
|
|
|
|
// tag::math_list[]
|
|
* <<esql-abs>>
|
|
* <<esql-acos>>
|
|
* <<esql-asin>>
|
|
* <<esql-atan>>
|
|
* <<esql-atan2>>
|
|
* <<esql-ceil>>
|
|
* <<esql-cos>>
|
|
* <<esql-cosh>>
|
|
* <<esql-e>>
|
|
* <<esql-floor>>
|
|
* <<esql-log>>
|
|
* <<esql-log10>>
|
|
* <<esql-pi>>
|
|
* <<esql-pow>>
|
|
* <<esql-round>>
|
|
* <<esql-signum>>
|
|
* <<esql-sin>>
|
|
* <<esql-sinh>>
|
|
* <<esql-sqrt>>
|
|
* <<esql-tan>>
|
|
* <<esql-tanh>>
|
|
* <<esql-tau>>
|
|
// end::math_list[]
|
|
|
|
include::layout/abs.asciidoc[]
|
|
include::layout/acos.asciidoc[]
|
|
include::layout/asin.asciidoc[]
|
|
include::layout/atan.asciidoc[]
|
|
include::layout/atan2.asciidoc[]
|
|
include::layout/ceil.asciidoc[]
|
|
include::layout/cos.asciidoc[]
|
|
include::layout/cosh.asciidoc[]
|
|
include::layout/e.asciidoc[]
|
|
include::layout/floor.asciidoc[]
|
|
include::layout/log.asciidoc[]
|
|
include::layout/log10.asciidoc[]
|
|
include::layout/pi.asciidoc[]
|
|
include::layout/pow.asciidoc[]
|
|
include::layout/round.asciidoc[]
|
|
include::layout/signum.asciidoc[]
|
|
include::layout/sin.asciidoc[]
|
|
include::layout/sinh.asciidoc[]
|
|
include::sqrt.asciidoc[]
|
|
include::layout/tan.asciidoc[]
|
|
include::layout/tanh.asciidoc[]
|
|
include::tau.asciidoc[]
|