LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_template_int_rightCols.cpp
blobfc8c0d93c66ea2df5dc5831da18efb65b0d2c3ab
1 Array44i a = Array44i::Random();
2 cout << "Here is the array a:" << endl << a << endl;
3 cout << "Here is a.rightCols<2>():" << endl;
4 cout << a.rightCols<2>() << endl;
5 a.rightCols<2>().setZero();
6 cout << "Now the array a is:" << endl << a << endl;