Files
eigen/doc/snippets/MatrixBase_select.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
105 B
C++
Raw Normal View History

2009-02-09 10:01:42 +00:00
MatrixXi m(3, 3);
m << 1, 2, 3, 4, 5, 6, 7, 8, 9;
m = (m.array() >= 5).select(-m, m);
2009-02-09 10:01:42 +00:00
cout << m << endl;