OpenGrok
Cross Reference: MatrixBase_array.cpp
xref
: /
external
/
eigen
/
doc
/
snippets
/
MatrixBase_array.cpp
Home
|
History
|
Annotate
|
Download
|
only in
snippets
1
Vector3d
v(
1,2
,
3
);
2
v.
array
() +=
3
;
3
v.
array
() -=
2
;
4
cout
<< v <<
endl
;
5