从 C++ 中的向量创建矩阵与uBLAS

发布于 2024-11-16 10:42:13 字数 148 浏览 2 评论 0原文

如果我有 n 个长度为 m 的向量,并且想要将它们连接起来创建一个 mxn 矩阵,那么在 C++ 中使用 Boost uBLAS 执行此操作的最有效方法是什么?

显然,我可以循环遍历它们,并为每个矩阵元素分配相应的向量值,但我觉得有更好的方法来做到这一点,我不知道。

If I have n vectors of length m and want to join them to create an mxn matrix, what is the most efficient way to do this in C++ using Boost uBLAS?

Obviously, I can just loop though them and assign each matrix element with the corresponding vector value, but I feel like there is a better way to do this I am unaware of.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

今天小雨转甜 2024-11-23 10:42:13

我不会按元素迭代整个向量列表,而是尝试将每个向量直接分配到相应的 矩阵列

template<class AE >  
BOOST_UBLAS_INLINE matrix_column &  operator= (const vector_expression< AE > &ae) 

您必须在某个时刻复制每个元素,但这应该比嵌套循环更快(或者 Boost.uBlas 中的性能错误,如果不是的话)。

Rather than iterating the entire list of vectors element-wise, I would try assigning each of your vectors directly into the corresponding matrix column.

template<class AE >  
BOOST_UBLAS_INLINE matrix_column &  operator= (const vector_expression< AE > &ae) 

You have to copy each element at some point, but this should be faster than a nested loop (or a perf bug in Boost.uBlas, if not).

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