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