LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / TopicAliasing_mult3.cpp
blob1d12a6c670e4b9b97bd54c7cf66fdd27c107858a
1 MatrixXf matA(2,2);
2 matA << 2, 0, 0, 2;
3 matA.noalias() = matA * matA;
4 cout << matA;