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

6 lines
244 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.segment<2>(1):" << endl << v.segment<2>(1) << endl;
v.segment<2>(2).setZero();
cout << "Now the vector v is:" << endl << v << endl;