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