.NET 中的稀疏多维数组或矩阵库
我需要在 .NET 应用程序中使用最多 4 维的稀疏矩阵。 矩阵的大小(如果表示为 .NET 数组)可能会达到 400MB。
该数组可能非常稀疏,我需要能够非常快速地实例化和处理它(尽管这不是不行)。 因此,我需要一个稀疏数组库,它可以从 .NET 3.5 中使用(我认为它排除了使用托管 C++ 中的 BGL?),它尽可能密集,并且支持快速随机访问索引。 它必须可序列化为某种可以廉价缓存的密集格式。
.NET 中是否存在这样的东西? 自由软件? 成熟?
蒂亚
·安德鲁·马修斯
I have a need for a sparse matrix in up to 4 dimensions in a .NET application. The size of the matrix (if represented as a .NET Array) would potentially top 400MB.
The array is likely to be very sparse, and I need to be able to instantiate and dispose it very quickly (although that's not a no go). I'm therefore after a sparse array library, consumable from .NET 3.5 (which I believe rules out using BGL from Managed C++?) that is as dense as possible as I can get and the supports fast random access indexing. It must be serializable to some dense format that can be inexpensively cached.
Does such a thing exist (yet) for .NET? FOSS? Mature?
TIA
Andrew Matthews
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用字典实现您自己的字典相当简单。 下面的实现适用于 2 维,但您可以轻松实现 3 或 4 维。 当矩阵稀疏时,存储非常有效。 如果您打算频繁添加或删除列,那么这不是一个好的实现。
It is fairly simple to implement your own with a Dictionary. The implementation below works for 2 dimensions but you can easily implement 3 or 4 dimensions. The storage is very efficient when the matrix is sparse. It is not a good implementation if you plan to add or remove columns frequently.
我会推荐 dnAnalytics。 它支持稀疏矩阵,并有许多选项,包括强大的求解器、对 IMKL 的支持等。
I would recommend dnAnalytics. It supports sparse matrices, and has many options including robust solvers, support for IMKL, etc.
你会如何“轻松实现”,比如 4 维矩阵或张量? 我只看到上面的 i 和 j 索引......
how would you "easily implement", say a 4 dimensional matrix or tensor? I only see i and j indices above...