19 cout <<
"-- Matrix m*n: --" << endl << result << endl << endl;
20 result = m.array() * n.array();
21 cout <<
"-- Array m*n: --" << endl << result << endl << endl;
22 result = m.cwiseProduct(n);
23 cout <<
"-- With cwiseProduct: --" << endl << result << endl << endl;
24 result = m.array() + 4;
25 cout <<
"-- Array m + 4: --" << endl << result << endl << endl;
Namespace containing all symbols from the Eigen library.