mesytec-mnode/external/taskflow-3.8.0/3rd-party/eigen-3.3.7/doc/snippets/TopicAliasing_mult1.cpp

5 lines
76 B
C++
Raw Permalink Normal View History

2025-01-04 01:25:05 +01:00
MatrixXf matA(2,2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;