2008-09-13 18:44:23 +08:00
|
|
|
RowVector4i v = RowVector4i::Random();
|
2008-09-09 17:30:23 +08:00
|
|
|
cout << "Here is the vector v:" << endl << v << endl;
|
2008-09-15 23:45:41 +08:00
|
|
|
cout << "Here is v.segment(1, 2):" << endl << v.segment(1, 2) << endl;
|
|
|
|
|
v.segment(1, 2).setZero();
|
2008-09-09 17:30:23 +08:00
|
|
|
cout << "Now the vector v is:" << endl << v << endl;
|