sinh
Compute the hyperbolic sine, element-wise.| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. |
NDArray — Element-wise sinh(x) = (exp(x) - exp(-x)) / 2.
cosh
Compute the hyperbolic cosine, element-wise.| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. |
NDArray — Element-wise cosh(x) = (exp(x) + exp(-x)) / 2.
tanh
Compute the hyperbolic tangent, element-wise.| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. |
NDArray — Element-wise tanh(x) = sinh(x) / cosh(x).
arcsinh
Compute the inverse hyperbolic sine, element-wise. Also available as the aliasasinh.
| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. |
NDArray — Element-wise arcsinh(x) = ln(x + sqrt(x**2 + 1)).
arccosh
Compute the inverse hyperbolic cosine, element-wise. Also available as the aliasacosh.
| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. All values must be >= 1. |
NDArray — Element-wise arccosh(x) = ln(x + sqrt(x**2 - 1)).
arctanh
Compute the inverse hyperbolic tangent, element-wise. Also available as the aliasatanh.
| Name | Type | Default | Description |
|---|---|---|---|
x | ArrayLike | - | Input array. All values must be in the range (-1, 1). |
NDArray — Element-wise arctanh(x) = 0.5 * ln((1+x) / (1-x)).