math.sinh

Full name
math.sinh
Library
math
Syntax

math.sinh(x)

Description

The math.sinh function returns the hyperbolic sine of the number passed as an argument.

The hyperbolic sine function has the following graph:

math.sinh
Parameters
  • x: Number from which to obtain the hyperbolic sine.
Result

The math.sinh function returns a real number.

Examples

We can obtain the hyperbolic sine of the number 0.5 with the following code:

math.sinh(0.5)
0.5210953054937474
Submitted by admin on Mon, 02/15/2021 - 08:35