LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_cwiseInverse.cpp
blob23e08f7b9f7eca329ef5f0bdafeddded12dffb03
1 MatrixXd m(2,3);
2 m << 2, 0.5, 1,
3 3, 0.25, 1;
4 cout << m.cwiseInverse() << endl;