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