asinh

Summary

Get the hyperbolic arcsine of a number.

Usage

public static double asinh(double x)

Returns

The hyperbolic arcsine of the number.

Parameters

x

The number to get the hyperbolic arcsine of.

Description

Returns the hyperbolic arcsine for a number.

Examples

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

Share

HTML | BBCode | Direct Link