如何在 c++ 中将两个 spars 矩阵相加?
我想在 C++ 中将两个稀疏矩阵相加?
I want to add two sparse matrices together in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在 C++ 中将两个稀疏矩阵相加?
I want to add two sparse matrices together in C++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以根据以下规则添加矩阵:
添加的两个矩阵必须具有相同的行数和列数。
如何为存储方案执行此操作取决于如何映射行和列。但规则没有改变,因为矩阵就是这样运作的。
You add matricies according to this rule:
The two matricies being added must have the same number of rows and columns.
How you do it for your storage scheme depends on how you map rows and columns. But the rules are unchanged, because that's how matricies work.
如果您使用 boost::ublas 库,那么您可以简单地将它们添加在一起,如下所示。
If you use the boost::ublas library, then you can simply add them together, something like this.