Skip to content
Snippets Groups Projects
Commit 88e29709 authored by Nicolas Mansard's avatar Nicolas Mansard Committed by Valenza Florian
Browse files

Added documentation to the jacobian algo.

parent 8298073e
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,9 @@ namespace se3
return data.J;
}
/* Return the jacobian of the output frame attached to joint <jointId> in the
world frame or in the local frame depending on the template argument. The
function computeJacobians should have been called first. */
template<bool localFrame>
void getJacobian(const Model & model, const Data& data,
Model::Index jointId, Eigen::MatrixXd & J)
......@@ -113,7 +116,7 @@ namespace se3
};
/* Compute the jacobian in the local frame. */
/* Compute the jacobian of the output frame of the joint <idx> in the local frame. */
const Eigen::MatrixXd&
jacobian(const Model & model, Data& data,
const Eigen::VectorXd & q,
......
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