We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4075d0 commit a2247a9Copy full SHA for a2247a9
examples/plotting/colorbar.py
@@ -13,7 +13,7 @@
13
14
# arg( e^(1/z) )
15
def exp_z_inv(x, y):
16
- z = np.complex_(x, y)
+ z = complex(x, y)
17
f = np.exp(1.0 / z)
18
return np.angle(f, deg=True)
19
0 commit comments