math.asinh

Full name
math.asinh
Library
math
Syntax

math.asinh(x)

Description

The math.asinh function returns the hyperbolic arcsine of the number passed as an argument.

The hyperbolic arcsine function has the following graph:

math.asinh
Parameters
  • x: Number from which to obtain the hyperbolic arcsine.
Result

The math.asinh function returns a real number.

Scenarios

We can obtain the hyperbolic arcsine of the number 4 with the following code:

math.asinh(4)
2.0947125472611012
Submitted by admin on Fri, 02/12/2021 - 10:26