elasticsearch/docs/reference/query-languages/esql/_snippets/functions/examples/acos.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
242 B
Markdown
Raw Normal View History

% This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
**Example**
```esql
ROW a=.9
| EVAL acos=ACOS(a)
```
| a:double | acos:double |
| --- | --- |
| .9 | 0.45102681179626236 |