对 Boost::uBLAS 向量执行 STL 操作
如何将函数映射到 uBLAS 中向量的每个元素(如 Mathematica 中的 Map[])?
例如;我想获取 uBLAS 向量的所有元素的 sin()
。 Boost、GSL 或任何其他数值库中是否有优化方法来执行此操作,而不是简单地循环遍历向量的元素?
另外,我将如何对 uBLAS 向量执行其他高级操作,例如旋转、删除重复项或用零填充等?
How can I map a function to every element of a vector in uBLAS (like Map[] in Mathematica)?
For example; I want to take the sin()
of all the elements of a uBLAS vector. Is there an optimized way in Boost, GSL, or any other numerical libraries to do this instead of simply looping through the elements of the vector?
Also, how would I perform other advanced operations on the uBLAS vectors such as rotating, deleting duplicates, or padding with zeros, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的向量(根据这个) 支持普通向量运算,只需使用标准算法即可。对于您的情况,这里有一些帮助(全部在
内):std::transform
和sinef 来自
std::rotate
。Your vector (according to this) supports normal vector operations, just use the standard algorithms. In your case, here are a few of help (all inside
<algorithm>
):std::transform
withsinef
from<cmath>
std::rotate
.std::unique
after a sort, deleting the unused elements.与map最接近的等价物是
std::transform
并且用于重复数据删除:(
我相信ublas向量有
begin()
和end()
或类似)The closest equivalent to map is
std::transform
And for de-duplication:
(I believe ublas vector has
begin()
andend()
or similar)