1Vector3d v(1,2,3);
2v.array() += 3;
3v.array() -= 2;
4cout << v << endl;
5