在 python 中存储稀疏矩阵时如何更改表示形式?
稀疏矩阵表示形式为:
(i,j) value
我想将这些值存储到 3 列的文本文件中,即:
i j value
The sparse matrix representation is of the form:
(i,j) value
I want to store these values to a text file in 3 columns namely:
i j value
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的稀疏矩阵存储在名为 dict 的字典中,那么您可以使用:
这会将数据输出为制表符分隔的文本文件。
If your sparse matrix is stored in a dictionary called dict then you can use:
This will output the data as a tab-delimited text file.