ublas 矩阵表达式教程/示例
我正在尝试实现某些矩阵运算,但我迷失在 ublas 库的内部。是否有关于如何实现新的 ublas 矩阵表达式的资源,例如教程或示例?
谢谢
I am trying to implement certain matrix operations but I am lost in the internals of ublas library. is there a resource such as tutorial or an example on how to implement new ublas matrix expressions?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不知道是否有帮助,但是有一个关于扩展 uBlas 的 wiki 页面 此处。那个表情模板真的让我大吃一惊。 :)
Don't know if it'll help, but there's a wiki page on extending uBlas here. That expression template stuff really blows my mind. :)
我的建议是仅对新函数进行模板化,这样您就不必担心矩阵表达式或 ublas 内部结构。例如,如果您想编写自己的反函数,请将其编写为模板:
My suggestion is to just template your new functions so you don't have to worry about matrix expressions or ublas internals. For example, if you wanted to write your own inverse function, write it as a template:
这里还有一些示例,如果它们有帮助的话。
There are also some examples here, if they help at all.