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

Method arccosh

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

Source from the content-addressed store, hash-verified

377 }
378
379 public static double arccosh(double x) {
380 return Math.log(x + (Math.sqrt(x * x - 1)));
381 }
382
383 public static double arcsin(double x) {
384 return Math.asin(x);

Callers 2

acoshMethod · 0.95
arcsechMethod · 0.95

Calls 1

logMethod · 0.80

Tested by

no test coverage detected