mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
3 lines
103 B
C++
3 lines
103 B
C++
Matrix<int, 1, 6> a(1, 2, 3, 4, 5, 6);
|
|
Matrix<int, 3, 1> b {1, 2, 3};
|
|
cout << a << "\n\n" << b << endl; |