Sign in
third-party-mirror
/
eigen
/
3e28d6aebdad8722ad691eab6b3f73d0c8e847a8
/
.
/
doc
/
snippets
/
MatrixBase_cwiseAbs2.cpp
blob: 952ba9d348e942dd05396e01a4fe02a5f94711e8 [
file
]
MatrixXd
m
(
2
,
3
);
m
<<
2
,
-
4
,
6
,
-
5
,
1
,
0
;
cout
<<
m
.
cwiseAbs2
()
<<
endl
;