aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_cwiseInverse.cpp
blob: 23e08f7b9f7eca329ef5f0bdafeddded12dffb03 (plain)
1
2
3
4
MatrixXd m(2,3);
m << 2, 0.5, 1,   
     3, 0.25, 1;
cout << m.cwiseInverse() << endl;