* Get the conjugate of the complex number * @returns The conjugate of the complex number: a + (-bi)
()
| 111 | * @returns The conjugate of the complex number: a + (-bi) |
| 112 | */ |
| 113 | public conj(): complex |
| 114 | { |
| 115 | return new complex (this.real, -this.img); |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Get the negation of the complex number |
nothing calls this directly
no outgoing calls
no test coverage detected