Sign in
eigen
/
mirror
/
283d871a3f461512d560f1bcbb2b8e1d650941b9
/
.
/
doc
/
snippets
/
Matrix_initializer_list_23_cxx11.cpp
blob: 8cde1cb37fca9107bd6a3c5294d9cc55813339d4 [
file
] [
log
] [
blame
]
MatrixXd
m
{{
1
,
2
,
3
},
{
4
,
5
,
6
}};
cout
<<
m
<<
endl
;