Choose where you’d like to start

sinh()

Overview

The sinh() function returns the hyperbolic sine of the specified angle (in radians).

Return Type

Syntax

<variable> = <number>.sinh();

(OR)

<variable> = sinh(<number>);
ParameterData typeDescription
<variable>NUMBERVariable which will contain the returned value.
<number>NUMBERThe number whose hyperbolic sine value will be returned.

Examples

number= 1;
sinhValue = number.sinh();       // returns 1.1752011936438014

Get Started Now

Execute