MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / divide

Method divide

JSAT/src/jsat/math/Complex.java:273–278  ·  view source on GitHub ↗

Creates a new complex number containing the resulting division of this by another @param c the number to divide by @return this /c

(Complex c)

Source from the content-addressed store, hash-verified

271 * @return <tt>this</tt>/c
272 */
273 public Complex divide(Complex c)
274 {
275 Complex ret = new Complex(real, imag);
276 ret.mutableDivide(c);
277 return ret;
278 }
279
280 /**
281 * Computes the magnitude of this complex number, which is

Callers

nothing calls this directly

Calls 1

mutableDivideMethod · 0.95

Tested by

no test coverage detected