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

Method arcsinh

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

Source from the content-addressed store, hash-verified

389 }
390
391 public static double arcsinh(double x) {
392 return Math.log(x + (Math.sqrt(x * x + 1)));
393 }
394
395 public static double sec(double x) {
396 return 1.0 / Math.cos(x);

Callers 2

asinhMethod · 0.95
arccschMethod · 0.95

Calls 1

logMethod · 0.80

Tested by

no test coverage detected