Alters this complex number so that it represents its complex conjugate instead.
()
| 303 | * instead. |
| 304 | */ |
| 305 | public void mutateConjugate() |
| 306 | { |
| 307 | this.imag = -imag; |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Returns a new complex number representing the complex conjugate of this |
no outgoing calls