Sign in
eigen
/
mirror
/
acb32c69d4e8a78763400ac045b7e06930348fe9
/
.
/
doc
/
snippets
/
MatrixBase_end_int.cpp
blob: aaa54b66873fa1bfe8492243c2ea36e68246cbe7 [
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
;