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