Files
eigen/doc/snippets/MatrixBase_cwiseAbs2.cpp

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

4 lines
74 B
C++
Raw Permalink Normal View History

MatrixXd m(2, 3);
m << 2, -4, 6, -5, 1, 0;
cout << m.cwiseAbs2() << endl;