Alters this complex number as if a subtraction of another complex number was performed. @param r the real part of the other number @param i the imaginary part of the other number
(double r, double i)
| 108 | * @param i the imaginary part of the other number |
| 109 | */ |
| 110 | public void mutableSubtract(double r, double i) |
| 111 | { |
| 112 | mutableAdd(-r, -i); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Alters this complex number to contain the result of the subtraction of another |
no test coverage detected