LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / DirectionWise_replicate_int.cpp
blobf9b1b5355f191f7d372168c3b2929ce9cf1b1ee1
1 Vector3i v = Vector3i::Random();
2 cout << "Here is the vector v:" << endl << v << endl;
3 cout << "v.rowwise().replicate(5) = ..." << endl;
4 cout << v.rowwise().replicate(5) << endl;