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

Method subtract

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

Creates a new complex number containing the resulting subtracting another from this one @param c the number to subtract @return this -c

(Complex c)

Source from the content-addressed store, hash-verified

127 * @return <tt>this</tt>-c
128 */
129 public Complex subtract(Complex c)
130 {
131 Complex ret = new Complex(real, imag);
132 ret.mutableSubtract(c);
133 return ret;
134 }
135
136 /**
137 * Performs a complex multiplication

Callers

nothing calls this directly

Calls 1

mutableSubtractMethod · 0.95

Tested by

no test coverage detected