mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
7 lines
117 B
C++
7 lines
117 B
C++
MatrixXi m(3, 3);
|
|
m << 1, 2, 3,
|
|
4, 5, 6,
|
|
7, 8, 9;
|
|
m = (m.cwise() >= 5).select(-m, m);
|
|
cout << m << endl;
|