acosh

Summary

Get the hyperbolic arccosine of a number.

Usage

public static double acosh(double x)

Returns

The hyperbolic arccosine of the number. The returned value will be e0. NaN if the provided argument is out of range.

Parameters

x

The number to get the hyperbolic arccosine of.

Description

Returns the hyperbolic arccosine for a number e1. If the provided number is out of range, NaN will be returned.

Examples

Basic Usage
1
2
3
4
5
import System;
 
Console.log(Math.acosh(0)); // NaN
Console.log(Math.acosh(1)); // 0
Console.log(Math.acosh(2)); // 1.3169578969248166

Share

HTML | BBCode | Direct Link