Sign in
eigen
/
mirror
/
25904802bc7a17f3436479a414234486ff4e084e
/
.
/
doc
/
snippets
/
MatrixBase_end_int.cpp
blob: 12b5f19f2d91894392e1908a2701f227bdc64626 [
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
;