Files
eigen/doc/snippets/MatrixBase_end_int.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
226 B
C++
Raw Normal View History

RowVector4i v = RowVector4i::Random();
2008-01-13 23:17:51 +00:00
cout << "Here is the vector v:" << endl << v << endl;
cout << "Here is v.tail(2):" << endl << v.tail(2) << endl;
v.tail(2).setZero();
2008-01-13 23:17:51 +00:00
cout << "Now the vector v is:" << endl << v << endl;