Sign in
eigen
/
mirror
/
6ecd02d7ec85f07e02559cb311d4dd07e844a72d
/
.
/
doc
/
snippets
/
Cwise_slash_equal.cpp
blob: 10c4f4acc37a43ff2bf13334ae76d657e9e2f716 [
file
] [
log
] [
blame
]
Vector3d
v
(
3
,
2
,
4
);
Vector3d
w
(
5
,
4
,
2
);
v
.
cwise
()
/=
w
;
cout
<<
v
<<
endl
;