LoginSignup
1
1

More than 5 years have passed since last update.

sqrt and emath.sqrt in numpy

Posted at
A = np.emath.sqrt(-1)
B = np.sqrt(-1)
print(A)
print(B)
print(A==B)
test.py:5: RuntimeWarning: invalid value encountered in sqrt
  B = np.sqrt(-1)
1j
nan
False

Refs

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1