gpt4 book ai didi

相当于 MATLAB spones 的 numpy

转载 作者:行者123 更新时间:2023-12-01 03:04:09 25 4
gpt4 key购买 nike

这是 MATLAB 内置函数 spones(S) 的文档字符串:

spones

Replace nonzero sparse matrix elements with ones. R = spones(S) generates a matrix with the same sparsity structure as S, but with ones in the nonzero positions.

我想使用 numpy/scipy 数据结构(例如来自 scipy.sparse 的稀疏矩阵)来获得与此函数非常接近的等效项。我怎样才能有效地做到这一点?

最佳答案

x = ... some sparse matrix ...
y = x.copy().tocsr()
y.data.fill(1)

关于相当于 MATLAB spones 的 numpy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10581625/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com