Sign in
eigen
/
mirror
/
336ad582131f94b9e77c91c83c067dbd0c54c3fc
/
.
/
doc
/
snippets
/
MatrixBase_template_int_end.cpp
blob: 0908c030546a57761df4f6adec4a158296c1c880 [
file
] [
log
] [
blame
]
RowVector4i
v
=
RowVector4i
::
Random
();
cout
<<
"Here is the vector v:"
<<
endl
<<
v
<<
endl
;
cout
<<
"Here is v.end(2):"
<<
endl
<<
v
.
end
<
2
>()
<<
endl
;
v
.
end
<
2
>().
setZero
();
cout
<<
"Now the vector v is:"
<<
endl
<<
v
<<
endl
;