MCPcopy Create free account
hub / github.com/Aghajari/MathParser / acosh

Method acosh

MathParser/src/com/aghajari/math/Functions.java:375–377  ·  view source on GitHub ↗
(double x)

Source from the content-addressed store, hash-verified

373 }
374
375 public static double acosh(double x) {
376 return arccosh(x);
377 }
378
379 public static double arccosh(double x) {
380 return Math.log(x + (Math.sqrt(x * x - 1)));

Callers

nothing calls this directly

Calls 1

arccoshMethod · 0.95

Tested by

no test coverage detected