如何在初始值设定项列表中创建非空提升 ublas::vector

How to create a nonempty boost ublas::vector inside an initializer list?

本文关键字:创建 vector ublas 列表      更新时间:2023-10-16

我正在尝试做这样的事情

#include <boost/numeric/ublas/vector.hpp>
using namespace boost::numeric::ublas;
class A{
 protected:
    vector< double > a_;
 public:
    A( vector< double > a ) :
        a_( a ) {};
};
class B : public A{
 public:
    B() : A( vector< double >( { 1.25, 2.75, 3.34 } ) ){};
};

结果应该是,向量a_被声明为包含a_[0]=1.25, a_[1]=2.75, a_[2]=3.34的三向量。

此代码不起作用boost::numeric::ublas::vector因为没有可以处理vector<double>( { 1.25, 2.75, 3.34 } )的构造函数

我应该改用什么?也许是构造函数

vector (size_type size, const double &data)

从提升文档有帮助吗?

您可以将 ublas/vector 的默认存储类型从 unbounded_array 更改为 std::vector 以获得initializer_list支持或引入帮助程序函数来初始化成员:

#include <iostream>
#include <boost/numeric/ublas/vector.hpp>
using namespace boost::numeric::ublas;
template <typename T>
unbounded_array<T> make_unbounded_array(std::initializer_list<T> list) {
    unbounded_array<T> result(list.size());
    for(unsigned i = 0; i < list.size(); ++ i)
        result[i] = *(list.begin() + i);
    return result;
}
class Example
{
    public:
    vector<double, std::vector<double>> v0;
    vector<double> v1;
    public:
    Example()
    :   v0({ 1.25, 2.75, 3.34 }),
        v1(make_unbounded_array({ 1.25, 2.75, 3.34 }))
    {}
};

int main(int argc, char **argv) {
    Example example;
    std::cout
        << example.v0[0] << " == " << example.v1[0] << 'n'
        << example.v0[1] << " == " << example.v1[1] << 'n'
        << example.v0[2] << " == " << example.v1[2] << 'n'
    ;
}