mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
3cd2a125b2
- make vectors use a separate loop unroller, so that copying a row-vector into a col-vector is now possible - add much more documentation - misc improvements
4 lines
82 B
C++
4 lines
82 B
C++
Matrix3d m = Matrix3d::identity();
|
|
m.row(1) = Vector3d(4,5,6);
|
|
cout << m << endl;
|