Sign in
third-party-mirror
/
eigen
/
04a6c55da3977f8f9e096f6306f4e0d68aeb284a
/
.
/
doc
/
snippets
/
Tutorial_range_for_loop_1d_cxx11.cpp
blob: ee3af8613bac17520cde01a1dae725f45cb87f87 [
file
]
VectorXi
v
=
VectorXi
::
Random
(
4
);
cout
<<
"Here is the vector v:\n"
;
for
(
auto
x
:
v
)
cout
<<
x
<<
" "
;
cout
<<
"\n"
;