source:
pacpussensors/trunk/Vislab/lib3dv-1.2.0/lib3dv/eigen/doc/snippets/TopicAliasing_mult2.cpp
Last change on this file was 136, checked in by , 8 years ago | |
---|---|
File size: 230 bytes |
Line | |
---|---|
1 | MatrixXf matA(2,2), matB(2,2); |
2 | matA << 2, 0, 0, 2; |
3 | |
4 | // Simple but not quite as efficient |
5 | matB = matA * matA; |
6 | cout << matB << endl << endl; |
7 | |
8 | // More complicated but also more efficient |
9 | matB.noalias() = matA * matA; |
10 | cout << matB; |
Note:
See TracBrowser
for help on using the repository browser.