Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
calculate
Method · 0.95
ln
Method · 0.80
arccosh
Method · 0.80
arcsinh
Method · 0.80
arctanh
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected