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