MCPcopy 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

builtInFunctionMethod · 0.45
SuryonoParserClass · 0.45
UtilClass · 0.45
evaluateMethod · 0.45
powerMethod · 0.45
powMethod · 0.45
asinMethod · 0.45
acosMethod · 0.45
atanMethod · 0.45
asinhMethod · 0.45
acoshMethod · 0.45
atanhMethod · 0.45

Calls 2

absMethod · 0.95
argMethod · 0.95

Tested by

no test coverage detected