LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / MatrixBase_cwiseProduct.cpp
blob1db3a11324b6a3abe53c4d4d049d1f2d2b38166a
1 Matrix3i a = Matrix3i::Random(), b = Matrix3i::Random();
2 Matrix3i c = a.cwiseProduct(b);
3 cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl;