epfl-archive/cs440-acg/ext/eigen/doc/snippets/TopicAliasing_mult1.cpp

5 lines
76 B
C++
Raw Normal View History

2022-04-07 18:46:57 +02:00
MatrixXf matA(2,2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;