Skip to content
Snippets Groups Projects
Commit e2387344 authored by jcarpent's avatar jcarpent
Browse files

[Python] Fix symmetrization of data.M

parent 5555d371
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,9 @@ namespace se3
const Eigen::VectorXd & a)
{
computeRNEADerivatives(model,data,q,v,a);
// Symmetrize M
data.M.triangularView<Eigen::StrictlyLower>()
= data.M.transpose().triangularView<Eigen::StrictlyLower>();
}
void exposeRNEADerivatives()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment