ASINH
The ASINH function returns the hyperbolic arcsine of a number.
This function takes a single Number as input. It outputs that Number's inverse hyperbolic sine.
Declaration
Parameters
number (required, type: Number) The number to calculate the hyperbolic arcsine of.
Return Values
hyperbolic_arcsine (type: number) The hyperbolic arcsine of the given number.
Examples
The following example returns the hyperbolic arcsine of 0.25:
Last updated