mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
6 lines
126 B
C++
6 lines
126 B
C++
|
|
Array<int, 2, 3> a {
|
||
|
|
{1, 2, 3},
|
||
|
|
{3, 4, 5}
|
||
|
|
};
|
||
|
|
Array<int, Dynamic, 1> v {{1, 2, 3, 4, 5}};
|
||
|
|
cout << a << "\n\n" << v << endl;
|