* Get the arguement of the complex number, the angle in radians with the x-axis in polar * coordinates * @returns The arguement of the complex number
()
| 130 | * @returns The arguement of the complex number |
| 131 | */ |
| 132 | public arg(): number |
| 133 | { |
| 134 | return Math.atan2(this.img, this.real); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * Get the exponential of the complex number |