To avoid the invalid value
warning/error, the argument to numpy's sqrt
function must be complex:
In [8]: import numpy as np
In [9]: np.sqrt(-1+0j)
Out[9]: 1j
As @AshwiniChaudhary pointed out in a comment, you could also use the cmath
standard library:
In [10]: cmath.sqrt(-1)
Out[10]: 1j
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…