向量内积Vector2d m(1, 2);
Vector2d n(4, 5);
cout << m.dot(n) << endl; // 向量内积:14
cout << m.adjoint() *
2021-03-21