C ++ Armadillo:从vector <vector <double>&gt; mat初始化mat破坏数据

时间:2015-11-01 15:41:25

标签: c++ armadillo

我正在尝试将数据从矢量矢量初始化为犰狳垫。

发现这个网站解释了如何做到这一点:

http://www.kaiyin.co.vu/2014/07/initialize-armadillo-matrix-with-std.html

在打印了矢量矢量和得到的数据后,我得出的结论是,犰狳会使我的数据变成垃圾。

我职能的主要部分:

 vector<vector<double>> C_mat(num_of_functions,vector<double>(num_of_points));
        for(int j=0; j< num_of_functions; ++j)
        {
            for( int i=0;i<num_of_points; ++i)
            {
                C_mat[j][i]=(functions[j](points[i].x()));// shouldn't bother you, this works. 
            }
        }
        mat C(&(C_mat.front()).front(),num_of_points, num_of_functions);

        cout << C << endl << endl;
        for(int i=0; i< num_of_functions;++i)
        {
            print_vec(C_mat[i]);
        }

print_ve(vector)是我写的一个打印矢量的函数。

输出:

    1.0000e+00        0e+00   1.9965e+01
    1.0000e+00  4.7924e-322   1.2822e+00
    1.0000e+00   1.1683e+01        0e+00
    1.0000e+00   1.6936e+01  4.7924e-322
    1.0000e+00   2.3361e-01   1.0237e+02
    1.0000e+00   1.6445e+01   2.1512e+02
    1.0000e+00   7.4271e+00   4.0931e-02
    1.0000e+00   1.4162e+01   2.0284e+02
    1.0000e+00   1.1670e+01   4.1371e+01
    1.0000e+00   2.3633e+00   1.5042e+02

打印矢量:

1 1 1 1 1 1 1 1 1 1

打印矢量:

11.6828 16.9359 0.233613 16.4455 7.42708 14.1619 11.6701 2.36329 19.9653 1.28223

打印矢量:

102.366 215.119 0.0409313 202.84 41.3711 150.421 102.143 4.18885 298.959 1.23308

更新:

我尝试通过基本上从1D向量中创建自己的2D向量来更改关于第一个注释的代码。现在,犰狳不会破坏数据,但会破坏它:

        vector<double> C_mat(num_of_functions*num_of_points);   
        for( int i=0;i<num_of_points; ++i)
        {
            for(int j=0; j< num_of_functions; ++j)
            {
                    C_mat[i*num_of_functions+j]= functions[j](points[i].x());
            }
        } 
        mat C(&C_mat.front(),num_of_points, num_of_functions);

输出:

     1.0000e+00   1.1170e+01   1.6853e+01
     4.5538e+00   9.3574e+01   1.0000e+00
     1.5553e+01   1.0000e+00   1.6292e+01
     1.0000e+00   8.7956e-01   1.9907e+02
     6.0653e+00   5.8021e-01   1.0000e+00
     2.7591e+01   1.0000e+00   1.0787e+01
     1.0000e+00   1.8169e+01   8.7269e+01
     1.3849e+01   2.4758e+02   1.0000e+00
     1.4385e+02   1.0000e+00   1.7998e+01
     1.0000e+00   4.7403e+00   2.4295e+02


   1  4.5538  15.5528 
   1  6.06532  27.5911 
   1  13.8494  143.854 
   1  11.1698  93.574 
   1  0.879557  0.580215 
   1  18.1687  247.577 
   1  4.74031  16.8529 
   1  16.2919  199.069 
   1  10.787  87.2695 
   1  17.998  242.945 

1 个答案:

答案 0 :(得分:1)

std::vector等效于数据指针和长度(以及一些不相关的东西)。指针指向一堆内存,存储实际元素。第0个元素存储在地址pointer,第N个元素存储在pointer+N。这就是为什么Armadillo mat构造函数可以获取第一个元素的地址和长度并构造矩阵。

当你制作一个向量时,你得到num_of_functions个内向量,每个向量都有自己的数据指针。这意味着数据不会存储在连续的内存中。

要初始化std::vector的二维矩阵,您应该创建大小为num_of_functions*num_of_points的矩阵,并将值存储在列主要排序中。