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

Method atanh

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

Source from the content-addressed store, hash-verified

445 }
446
447 public static double atanh(double x) {
448 return arctanh(x);
449 }
450
451 public static double arctanh(double x) {
452 return 0.5 * Math.log((1 + x) / (1 - x));

Callers

nothing calls this directly

Calls 1

arctanhMethod · 0.95

Tested by

no test coverage detected