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