MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / arg

Method arg

src/org/opensourcephysics/numerics/Complex.java:210–212  ·  view source on GitHub ↗

Returns the argument of this complex number (Math.atan2(re,im))

()

Source from the content-addressed store, hash-verified

208 * Returns the argument of this complex number (Math.atan2(re,im))
209 */
210 public double arg() {
211 return Math.atan2(im, re);
212 }
213
214 /** Convert text representation to a Complex.
215 * input format (real_double,imaginary_double)

Callers 9

powerMethod · 0.95
logMethod · 0.95
asinMethod · 0.95
acosMethod · 0.95
atanMethod · 0.95
asinhMethod · 0.95
acoshMethod · 0.95
atanhMethod · 0.95
powMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected