aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_block_int_int.cpp
blob: 974f86b54419f2c67d76be5c22e6d085abef46c6 (plain)
1
2
3
4
5
RowVector4i v = RowVector4i::Random();
cout << "Here is the vector v:" << endl << v << endl;
cout << "Here is v.block(1, 2):" << endl << v.block(1, 2) << endl;
v.block(1, 2).setZero();
cout << "Now the vector v is:" << endl << v << endl;