Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c55b0172b26fcf0a0b8d5ef0b98c87128e0f6bdb
/
.
/
doc
/
snippets
/
MatrixBase_cwiseSign.cpp
blob: efd717955fdcf50e9b1a235354821da486e91a24 [
file
] [
log
] [
blame
]
Austin Schuh
189376f
2018-12-20 22:11:15 +1100
[
diff
] [
blame
]
1
MatrixXd
m
(
2
,
3
);
2
m
<<
2
,
-
4
,
6
,
3
-
5
,
1
,
0
;
4
cout
<<
m
.
cwiseSign
()
<<
endl
;