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)
| 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> |
nothing calls this directly
no test coverage detected