Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenSourcePhysics/osp
/ log
Method
log
src/org/opensourcephysics/numerics/Complex.java:470–472 ·
view source on GitHub ↗
Returns the logarithm of this complex number.
()
Source
from the content-addressed store, hash-verified
468
* Returns the logarithm of this complex number.
469
*/
470
public
Complex log() {
471
return
new
Complex(Math.log(abs()), arg());
472
}
473
474
/**
475
* Calculates the square root of this object.
Callers
15
builtInFunction
Method · 0.45
SuryonoParser
Class · 0.45
Util
Class · 0.45
evaluate
Method · 0.45
power
Method · 0.45
pow
Method · 0.45
asin
Method · 0.45
acos
Method · 0.45
atan
Method · 0.45
asinh
Method · 0.45
acosh
Method · 0.45
atanh
Method · 0.45
Calls
2
abs
Method · 0.95
arg
Method · 0.95
Tested by
no test coverage detected