Files
smart_wasm/Eigen3/doc/snippets/MatrixBase_template_int_start.cpp
2026-06-01 15:55:59 +08:00

6 lines
230 B
C++

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