Skip to content
GitLab
Explore
Sign in
libRaptorQ
external
eigen3
doc
snippets
MatrixBase_cwiseSign.cpp
Find file
Normal view
History
Permalink
MatrixBase_cwiseSign.cpp
80 B
Newer
Older
Update to Eigen 3.3.4
Luker
committed
Mar 29, 2018
1
2
3
4
MatrixXd
m
(
2
,
3
);
m
<<
2
,
-
4
,
6
,
-
5
,
1
,
0
;
cout
<<
m
.
cwiseSign
()
<<
endl
;