eigen/doc/snippets/MatrixBase_template_int_start.cpp

6 lines
233 B
C++
Raw Normal View History

RowVector4i v = RowVector4i::Random();
cout << "Here is the vector v:" << endl << v << endl;
cout << "Here is v.start(2):" << endl << v.start<2>() << endl;
v.start<2>().setZero();
cout << "Now the vector v is:" << endl << v << endl;