Creates a new complex number containing the resulting subtracting another from this one @param c the number to subtract @return this -c
(Complex c)
| 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 |
nothing calls this directly
no test coverage detected