* Multiply two complex numbers * @param other - The 2nd complex number operand * @returns The product of x / other
(other: complex)
| 61 | * @returns The product of x / other |
| 62 | */ |
| 63 | public mult(other: complex): complex |
| 64 | { |
| 65 | return new complex (this.real * other.real - this._img * other.img, |
| 66 | this.real * other.img + this._img * other.real); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Divide two complex numbers |
nothing calls this directly
no outgoing calls
no test coverage detected