Esiste una funzione o un metodo pronto in Eigen per Hat operator? Questo è l'operatore, che restituisce una matrice, che imita un prodotto incrociato con quel vettore. Lo so, che può essere facilmente scritto, ma vorrei evitarlo:Matrice cross-product in Eigen
Eigen::Vector3d t = // some vector ;
Eigen::Matrix3d t_hat;
t_hat << 0, -t(2), t(1),
t(2), 0, -t(0),
-t(1), t(0), 0;
Tale matrice viene in genere chiamata _antisymmetric_ o _skew-symmetric_ matrix. – user2658323