blob: 70cd6d2664cacc536917624b659a64716b1ea090 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001RowVector4i v = RowVector4i::Random();
2cout << "Here is the vector v:" << endl << v << endl;
3cout << "Here is v.segment(1, 2):" << endl << v.segment(1, 2) << endl;
4v.segment(1, 2).setZero();
5cout << "Now the vector v is:" << endl << v << endl;