mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-03-01 18:26:24 +08:00
fix doc compilation
This commit is contained in:
parent
e5c50afed6
commit
a62bd110a2
@ -1,5 +1,5 @@
|
||||
RowVector5i v = RowVector5i::Random();
|
||||
RowVector4i v = RowVector4i::Random();
|
||||
cout << "Here is the vector v:" << endl << v << endl;
|
||||
cout << "Here is v.block<2>(1):" << endl << v.start<2>() << endl;
|
||||
cout << "Here is v.block<2>(1):" << endl << v.block<2>(1) << endl;
|
||||
v.block<2>(2).setZero();
|
||||
cout << "Now the vector v is:" << endl << v << endl;
|
||||
|
Loading…
Reference in New Issue
Block a user