mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-20 08:39:37 +08:00

- remove all invertibility checking, will be redundant with LU - general case: adapt to matrix storage order for better perf - size 4 case: handle corner cases without falling back to gen case. - rationalize with selectors instead of compile time if - add C-style computeInverse() * update inverse test. * in snippets, default cout precision to 3 decimal places * add some cmake module from kdelibs to support btl with cmake 2.4
4 lines
145 B
C++
4 lines
145 B
C++
Matrix3d m = Matrix3d::random();
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
|
cout << "Its inverse is:" << endl << m.inverse() << endl;
|