mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-30 02:13:33 -04:00
* Functions starting with A * Functions starting with 'C' * More 'C' functions * Fix tests * Fix missing snippet * DATE_* functions * Apply suggestions from code review Co-authored-by: Bogdan Pintea <pintea@mailbox.org> --------- Co-authored-by: Bogdan Pintea <pintea@mailbox.org>
33 lines
581 B
Text
33 lines
581 B
Text
[discrete]
|
|
[[esql-cos]]
|
|
=== `COS`
|
|
|
|
*Syntax*
|
|
|
|
[.text-center]
|
|
image::esql/functions/signature/cos.svg[Embedded,opts=inline]
|
|
|
|
*Parameters*
|
|
|
|
`n`::
|
|
Numeric expression. If `null`, the function returns `null`.
|
|
|
|
*Description*
|
|
|
|
Returns the https://en.wikipedia.org/wiki/Sine_and_cosine[cosine] of `n`. Input
|
|
expected in radians.
|
|
|
|
*Supported types*
|
|
|
|
include::types/cos.asciidoc[]
|
|
|
|
*Example*
|
|
|
|
[source.merge.styled,esql]
|
|
----
|
|
include::{esql-specs}/floats.csv-spec[tag=cos]
|
|
----
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|===
|
|
include::{esql-specs}/floats.csv-spec[tag=cos-result]
|
|
|===
|