如何创建常量增强矩阵?
如何创建常量增强矩阵?
以下内容无效:
const boost::numeric::ublas::matrix<double> arrayM(1, 3) = { {1.0, 2.0, 3.0} };
How can I create a const boost matrix?
The following did not work:
const boost::numeric::ublas::matrix<double> arrayM(1, 3) = { {1.0, 2.0, 3.0} };
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常类似于:
您也可以尝试这样的事情(大部分未经测试):
相同的想法,更通用。还有一点视觉效果,这很好。
Usually something akin to:
You might also try something like this (mostly untested):
Same idea, more generic. Also a bit more visual, which can be nice.