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

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