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

Method log

MathParser/src/com/aghajari/math/Functions.java:113–115  ·  view source on GitHub ↗
(double a, double b)

Source from the content-addressed store, hash-verified

111 /* Built-in functions */
112
113 public static double log(double a, double b) {
114 return Math.log(a) / Math.log(b);
115 }
116
117 public static double ln(double a) {
118 return Math.log(a);

Callers 5

calculateMethod · 0.95
lnMethod · 0.80
arccoshMethod · 0.80
arcsinhMethod · 0.80
arctanhMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected