在 python 中存储稀疏矩阵时如何更改表示形式?

发布于 2024-10-20 15:57:57 字数 172 浏览 1 评论 0原文

稀疏矩阵表示形式为:

          (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻的味道 2024-10-27 15:57:57

如果您的稀疏矩阵存储在名为 dict 的字典中,那么您可以使用:

f = open('output.txt', 'w')
for (i, j), value in dict.items():
    f.write("%s\t%s\t%s\n" % (i, j, value))

这会将数据输出为制表符分隔的文本文件。

If your sparse matrix is stored in a dictionary called dict then you can use:

f = open('output.txt', 'w')
for (i, j), value in dict.items():
    f.write("%s\t%s\t%s\n" % (i, j, value))

This will output the data as a tab-delimited text file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文