Sign in
eigen
/
mirror
/
393b7c495912dcf45491ef8f131c2599f1b5b147
/
.
/
doc
/
snippets
/
MatrixBase_cwiseAbs2.cpp
blob: 889a2e2ba0d4bb9726cd0b494659ab4015b6a30c [
file
]
MatrixXd
m
(
2
,
3
);
m
<<
2
,
-
4
,
6
,
-
5
,
1
,
0
;
cout
<<
m
.
cwiseAbs2
()
<<
endl
;