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

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

14 lines
265 B
Markdown
Raw Normal View History

% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.
**Example**
```esql
row x = 3.0, y = 10 | eval z = scalb(x, y)
```
| x:double | y:integer | z:double |
| --- | --- | --- |
| 3.0 | 10 | 3072.0 |