LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_replicate.cpp
blob3ce52bcd5dba51c843dc4a0fda5f0a955640271e
1 MatrixXi m = MatrixXi::Random(2,3);
2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "m.replicate<3,2>() = ..." << endl;
4 cout << m.replicate<3,2>() << endl;