LP-311 Remove basic/advanced stabilization tab auto-switch (autotune/txpid lock issues)
[librepilot.git] / ground / gcs / src / libs / eigen / doc / snippets / TopicAliasing_cwise.cpp
blob7049f6c56491c6fef963fd899c1f7cd5a59b1a50
1 MatrixXf mat(2,2);
2 mat << 1, 2, 4, 7;
3 cout << "Here is the matrix mat:\n" << mat << endl << endl;
5 mat = 2 * mat;
6 cout << "After 'mat = 2 * mat', mat = \n" << mat << endl << endl;
9 mat = mat - MatrixXf::Identity(2,2);
10 cout << "After the subtraction, it becomes\n" << mat << endl << endl;
13 ArrayXXf arr = mat;
14 arr = arr.square();
15 cout << "After squaring, it becomes\n" << arr << endl << endl;
17 // Combining all operations in one statement:
18 mat << 1, 2, 4, 7;
19 mat = (2 * mat - MatrixXf::Identity(2,2)).array().square();
20 cout << "Doing everything at once yields\n" << mat << endl << endl;