python中负稀疏矩阵的sqrt

时间:2019-04-25 09:46:03

标签: python sparse-matrix complex-numbers sqrt

如何在python中找到包含负数的稀疏矩阵的sqrtscipy.sparse.csr_matrix.sqrtnumpy.sqrt不适用于负数。我也尝试使用cmath.sqrt(mat_name.data)。但这也不起作用。

1 个答案:

答案 0 :(得分:1)

from numpy.lib.scimath import sqrt用于查找具有负数的稀疏矩阵的sqrt。在How can I take the square root of -1 using python?中找到了@David Zwicker的答案