aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Matrix_initializer_list_23_cxx11.cpp
blob: 60280ab58e4b8109b292efda240fafee072cbef0 (plain)
1
2
3
4
5
MatrixXd m {
  {1, 2, 3},
  {4, 5, 6}
};
cout << m << endl;