COSC-4P80-Assignment-2/lib/eigen-3.4.0/doc/snippets/MatrixBase_template_int_end...

6 lines
230 B
C++
Raw Normal View History

2024-10-21 16:42:03 -04:00
RowVector4i v = RowVector4i::Random();
cout << "Here is the vector v:" << endl << v << endl;
cout << "Here is v.tail(2):" << endl << v.tail<2>() << endl;
v.tail<2>().setZero();
cout << "Now the vector v is:" << endl << v << endl;