Math.acosh()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die statische Methode Math.acosh() gibt den inversen hyperbolischen Kosinus einer Zahl zurück. Das heißt,

x 1 , 𝙼𝚊𝚝𝚑.𝚊𝚌𝚘𝚜𝚑 ( 𝚡 ) = arcosh ( x ) = the unique  y 0  such that  cosh ( y ) = x = ln ( x + x 2 1 ) \begin{aligned}\forall x \geq 1,\;\mathtt{\operatorname{Math.acosh}(x)}} &= \operatorname{arcosh}(x) = \text{the unique } y \geq 0 \text{ such that } \cosh(y) = x\\&= \ln\left(x + \sqrt{x^2 - 1}\right)\end{aligned}

Probieren Sie es aus

Syntax

js
Math.acosh(x)

Parameter

x

Eine Zahl größer oder gleich 1.

Rückgabewert

Der inverse hyperbolische Kosinus von x. Wenn x kleiner als 1 ist, wird NaN zurückgegeben.

Beschreibung

Da acosh() eine statische Methode von Math ist, wird sie immer als Math.acosh() verwendet, nicht als Methode eines erstellten Math-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.acosh()

js
Math.acosh(0); // NaN
Math.acosh(1); // 0
Math.acosh(2); // 1.3169578969248166
Math.acosh(Infinity); // Infinity

Spezifikationen

Specification
ECMAScript Language Specification
# sec-math.acosh

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch