Sign in
eigen
/
mirror
/
e7c48fac9b0fed8bf262e44feccb63671362c845
/
.
/
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
;