mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 18:19:34 +08:00
4 lines
80 B
C++
4 lines
80 B
C++
MatrixXd m(2, 3);
|
|
m << 2, 0.5, 1, 3, 0.25, 1;
|
|
cout << m.cwiseInverse() << endl;
|