Creates a new complex number containing the resulting addition of this and another @param c the number to add @return this +c
(Complex c)
| 96 | * @return <tt>this</tt>+c |
| 97 | */ |
| 98 | public Complex add(Complex c) |
| 99 | { |
| 100 | Complex ret = new Complex(real, imag); |
| 101 | ret.mutableAdd(c); |
| 102 | return ret; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Alters this complex number as if a subtraction of another complex number was performed. |
no test coverage detected