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

Method multiply

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

Creates a new complex number containing the resulting multiplication between this and another @param c the number to multiply by @return this c

(Complex c)

Source from the content-addressed store, hash-verified

176 * @return <tt>this</tt>*c
177 */
178 public Complex multiply(Complex c)
179 {
180 Complex ret = new Complex(real, imag);
181 ret.mutableMultiply(c);
182 return ret;
183 }
184
185 /**
186 * Performs a complex division operation. <br>

Callers

nothing calls this directly

Calls 1

mutableMultiplyMethod · 0.95

Tested by

no test coverage detected