mesytec-mnode/external/taskflow-3.8.0/3rd-party/eigen-3.3.7/doc/snippets/MatrixBase_noalias.cpp

4 lines
129 B
C++
Raw Permalink Normal View History

2025-01-04 01:25:05 +01:00
Matrix2d a, b, c; a << 1,2,3,4; b << 5,6,7,8;
c.noalias() = a * b; // this computes the product directly to c
cout << c << endl;