Sign in
eigen
/
mirror
/
d3850641a1077a26dab7b74890d21c078dc983d9
/
.
/
doc
/
snippets
/
Cwise_times_equal.cpp
blob: 7db95b03bd7cff98947035afb3a94b62c35b5ff9 [
file
]
Vector3d
v
(
1
,
2
,
3
);
Vector3d
w
(
2
,
3
,
0
);
v
.
cwise
()
*=
w
;
cout
<<
v
<<
endl
;