sinh

Summary

Get the hyperbolic sine of a number.

Usage

public static double sinh(double x)

Returns

The hyperbolic sine of the number.

Parameters

x

The number to get the hyperbolic sine of.

Description

Returns the hyperbolic sine for a number.

The hyperbolic sine for a number can be expressed with Euler's number such that:

Math.sinh(x) == (Math.exp(x) - Math.exp(-x)) / 2;

Examples

Basic Usage
1
2
3
4
import System;
 
Console.log(Math.sinh(0)); // 0
Console.log(Math.sinh(1)); // 1.1752011936438014

Share

HTML | BBCode | Direct Link