mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
063d1bb811
plus some hacks to compile the examples from doxygen... Hopefully, api.kde.org/eigen2 will be beautiful by tomorrow....
4 lines
174 B
C++
4 lines
174 B
C++
Matrix3d m = Matrix3d::Random();
|
|
cout << "Here is the matrix m:" << endl << m << endl;
|
|
cout << "Here is the square norm of each row:" << endl << m.rowwise().norm2() << endl;
|