ublas 矩阵表达式教程/示例

发布于 2024-08-17 22:59:17 字数 84 浏览 12 评论 0原文

我正在尝试实现某些矩阵运算,但我迷失在 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 技术交流群。

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

发布评论

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

评论(3

伴梦长久 2024-08-24 22:59:17

不知道是否有帮助,但是有一个关于扩展 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. :)

秋意浓 2024-08-24 22:59:17

我的建议是仅对新函数进行模板化,这样您就不必担心矩阵表达式或 ublas 内部结构。例如,如果您想编写自己的反函数,请将其编写为模板:

template<typename MATRIX_IN, typename MATRIX_OUT>
bool invert_matrix(const MATRIX& A, MATRIX_OUT& B)
{
    // now use A(i,j), B(i,j), etc
    ...
}

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:

template<typename MATRIX_IN, typename MATRIX_OUT>
bool invert_matrix(const MATRIX& A, MATRIX_OUT& B)
{
    // now use A(i,j), B(i,j), etc
    ...
}

这里还有一些示例,如果它们有帮助的话。

There are also some examples here, if they help at all.

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