OpenGrok
Cross Reference: MatrixBase_cwiseQuotient.cpp
xref
: /
external
/
eigen
/
doc
/
snippets
/
MatrixBase_cwiseQuotient.cpp
Home
|
History
|
Annotate
|
Download
|
only in
snippets
1
Vector3d
v(
2,3
,
4
), w(
4,2
,
3
);
2
cout
<< v.
cwiseQuotient
(w) <<
endl
;
3