mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +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
118 B
C++
4 lines
118 B
C++
Matrix3d m = Matrix3d::diagonal(Vector3d(1,2,3));
|
|
m.dynBlock(1, 0, 2, 1) = m.dynBlock(1, 1, 2, 1);
|
|
cout << m << endl;
|