Sign in
third-party-mirror
/
eigen
/
2a10258d45ce0d23630971b7050643d0828d10de
/
.
/
doc
/
snippets
/
MatrixBase_cwiseSign.cpp
blob: efd717955fdcf50e9b1a235354821da486e91a24 [
file
] [
log
] [
blame
]
MatrixXd
m
(
2
,
3
);
m
<<
2
,
-
4
,
6
,
-
5
,
1
,
0
;
cout
<<
m
.
cwiseSign
()
<<
endl
;