如何在python中找到包含负数的稀疏矩阵的sqrt
? scipy.sparse.csr_matrix.sqrt
和numpy.sqrt
不适用于负数。我也尝试使用cmath.sqrt(mat_name.data)
。但这也不起作用。
答案 0 :(得分:1)
from numpy.lib.scimath import sqrt
用于查找具有负数的稀疏矩阵的sqrt
。在How can I take the square root of -1 using python?中找到了@David Zwicker的答案