Files
eigen/doc/snippets/MatrixBase_cwiseInverse.cpp

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

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

MatrixXd m(2, 3);
m << 2, 0.5, 1, 3, 0.25, 1;
cout << m.cwiseInverse() << endl;