Sign in
eigen
/
mirror
/
336ad582131f94b9e77c91c83c067dbd0c54c3fc
/
.
/
doc
/
snippets
/
MatrixBase_template_int_start.cpp
blob: 231fc32991720e7280e70500033bc6e0d3543fc9 [
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
;