* Get the natural base e log of the complex number * @returns The natural base e log of the complex number
()
| 149 | * @returns The natural base e log of the complex number |
| 150 | */ |
| 151 | public log(): complex |
| 152 | { |
| 153 | return new complex (Math.log(this.mag()), Math.atan2(this.img, this.real)); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Get the sine of the complex number |
no test coverage detected