Sign in
eigen
/
mirror
/
390724b4b66aa950cde7e0e7d0e70de05a924169
/
.
/
doc
/
snippets
/
MatrixBase_array.cpp
blob: f215086db2cbc1b604dcf5f018e9416091857fd9 [
file
] [
log
] [
blame
]
Vector3d
v
(
1
,
2
,
3
);
v
.
array
()
+=
3
;
v
.
array
()
-=
2
;
cout
<<
v
<<
endl
;