﻿---
title: ES|QL ASINH function
description: 
url: https://www.elastic.co/elastic/docs-builder/docs/3016/reference/query-languages/esql/functions-operators/math-functions/asinh
products:
  - Elasticsearch
---

# ES|QL ASINH function
## Syntax

![Embedded](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/query-languages/esql/images/functions/asinh.svg)


## Parameters

<definitions>
  <definition term="number">
    Numeric expression. If `null`, the function returns `null`.
  </definition>
</definitions>


## Description

Returns the [inverse hyperbolic sine](https://en.wikipedia.org/wiki/Inverse_trigonometric_functions) of a number.

## Supported types


| number        | result |
|---------------|--------|
| double        | double |
| integer       | double |
| long          | double |
| unsigned_long | double |


## Example

```esql
ROW a=1.8
| EVAL asinh=ASINH(a)
```


| a:double | asinh:double       |
|----------|--------------------|
| 1.8      | 1.3504407402749725 |