eigen/doc/snippets/Array_initializer_list_23_cxx11.cpp

5 lines
59 B
C++

ArrayXXi a {
{1, 2, 3},
{3, 4, 5}
};
cout << a << endl;