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