Files
eigen/doc/snippets/TopicAliasing_mult1.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
75 B
C++
Raw Normal View History

2010-12-27 15:06:55 +00:00
MatrixXf matA(2, 2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;