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