LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_isUnitary.cpp
blob3877da3479b93d64702f6ecf32d0255e5f23d291
1 Matrix3d m = Matrix3d::Identity();
2 m(0,2) = 1e-4;
3 cout << "Here's the matrix m:" << endl << m << endl;
4 cout << "m.isUnitary() returns: " << m.isUnitary() << endl;
5 cout << "m.isUnitary(1e-3) returns: " << m.isUnitary(1e-3) << endl;