Boost uBLAS 矩阵参考

发布于 2025-01-06 02:46:10 字数 225 浏览 1 评论 0原文

我想知道是否可以获得 Boost uBLAS 矩阵的单个元素的地址?

那是

boost::numeric::ublas::matrix<char> bob(3,3);
some_function(&bob[2][2]);

现在,当然第二行不起作用......但我希望它起作用。

有什么想法吗?

谢谢!

I'm wondering if it's possible to get the address of an individual element of a Boost uBLAS matrix?

That is

boost::numeric::ublas::matrix<char> bob(3,3);
some_function(&bob[2][2]);

Now, of course the second line won't work... but I'd like it to.

Any thoughts?

Thanks!

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

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

发布评论

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

评论(2

来世叙缘 2025-01-13 02:46:10

使用下面运算符的返回值的地址不是更简单吗?并且与矩阵布局无关?

reference operator () (size_type i, size_type j)

例如:

some_function(&bob(2,2));

Wouldn't using the address of the return value of the following operator be simpler? And independent of the matrix layout?

reference operator () (size_type i, size_type j)

For example:

some_function(&bob(2,2));
儭儭莪哋寶赑 2025-01-13 02:46:10

默认情况下,矩阵的内部表示是行主一维数组。

some_function(&bob.data()[i*ncol+j] 可以工作

by default, the inner representation of a matrix is a row major 1D array.

some_function(&bob.data()[i*ncol+j] would work

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