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

Method asinh

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

Source from the content-addressed store, hash-verified

385 }
386
387 public static double asinh(double x) {
388 return arcsinh(x);
389 }
390
391 public static double arcsinh(double x) {
392 return Math.log(x + (Math.sqrt(x * x + 1)));

Callers

nothing calls this directly

Calls 1

arcsinhMethod · 0.95

Tested by

no test coverage detected