You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exercise_2/3rdparty/colmap-build/eigen-eigen-323c052e1731/doc/snippets/TopicAliasing_mult1.cpp

5 lines
76 B

MatrixXf matA(2,2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;