mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
5 lines
87 B
C++
5 lines
87 B
C++
MatrixXd m(2,3);
|
|
m << 2, 0.5, 1,
|
|
3, 0.25, 1;
|
|
cout << m.cwiseInverse() << endl;
|