Sign in
third-party-mirror
/
eigen
/
eae6db0ca08e15a56faa194349561649dde541dd
/
.
/
doc
/
snippets
/
Tutorial_range_for_loop_2d_cxx11.cpp
blob: 27e1f8ab07d5b80fc20e02d3876d295bd4e48770 [
file
] [
log
] [
blame
]
Matrix2i
A
=
Matrix2i
::
Random
();
cout
<<
"Here are the coeffs of the 2x2 matrix A:\n"
;
for
(
auto
x
:
A
.
reshaped
())
cout
<<
x
<<
" "
;
cout
<<
"\n"
;