source: pacpussensors/trunk/Vislab/lib3dv/eigen/doc/examples/Tutorial_ArrayClass_mult.cpp@ 136

Last change on this file since 136 was 136, checked in by ldecherf, 7 years ago

Doc

File size: 237 bytes
Line 
1#include <Eigen/Dense>
2#include <iostream>
3
4using namespace Eigen;
5using namespace std;
6
7int main()
8{
9 ArrayXXf a(2,2);
10 ArrayXXf b(2,2);
11 a << 1,2,
12 3,4;
13 b << 5,6,
14 7,8;
15 cout << "a * b = " << endl << a * b << endl;
16}
Note: See TracBrowser for help on using the repository browser.