source:
pacpussensors/trunk/Vislab/lib3dv-1.2.0/lib3dv/eigen/doc/snippets/MatrixBase_noalias.cpp
Last change on this file was 136, checked in by , 8 years ago | |
---|---|
File size: 129 bytes |
Line | |
---|---|
1 | Matrix2d a, b, c; a << 1,2,3,4; b << 5,6,7,8; |
2 | c.noalias() = a * b; // this computes the product directly to c |
3 | cout << c << endl; |
Note:
See TracBrowser
for help on using the repository browser.