1Matrix3d m = Matrix3d::Identity();
2m.col(1) = Vector3d(4,5,6);
3cout << m << endl;
4