forked from kscience/kmath
Fix theta
This commit is contained in:
parent
8607639876
commit
d35516b9af
@ -41,7 +41,7 @@ public val Complex.r: Double
|
||||
* An angle between vector represented by complex number and X axis.
|
||||
*/
|
||||
public val Complex.theta: Double
|
||||
get() = atan(im / re)
|
||||
get() = atan2(im, re)
|
||||
|
||||
private val PI_DIV_2 = Complex(PI / 2, 0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user