Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
72890c2da170577883e6431bd92d612716a31b85
/
.
/
doc
/
snippets
/
MatrixBase_select.cpp
blob: ae5477f02774d83368ee5540bcb3a1c6e49c0862 [
file
] [
log
] [
blame
]
MatrixXi
m
(
3
,
3
);
m
<<
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
;
m
=
(
m
.
array
()
>=
5
).
select
(-
m
,
m
);
cout
<<
m
<<
endl
;