scipy.sparse.bsr_matrix.

power#

bsr_matrix.power(n, dtype=None)[source]#

此函数执行元素级幂运算。

参数::
n标量

n 是一个非零标量(非零避免创建密集的 1)。如果需要零次幂,请特殊处理使用 np.ones

dtype如果未指定 dtype,则将保留当前 dtype。
引发::
NotImplementedError如果 n 是零标量

如果需要零次幂,请特殊处理使用 np.ones(A.shape, dtype=A.dtype)