blob: cd3b26a7cf4c84812bd9e4cca480dd3ff9f204d2 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001Vector3d v(-1,2,-3);
2cout << "the absolute values:" << endl << v.array().abs() << endl;
3cout << "the absolute values plus one:" << endl << v.array().abs()+1 << endl;
4cout << "sum of the squares: " << v.array().square().sum() << endl;