2
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-03-01 18:26:24 +08:00
eigen/doc/snippets/TopicAliasing_mult3.cpp
2010-12-27 15:06:55 +00:00

5 lines
86 B
C++

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