18 using namespace Eigen;
33 "decompose", &decompose<Scalar, Options, JointCollectionDefaultTpl>,
34 bp::args(
"Model",
"Data"),
35 "Computes the Cholesky decomposition of the joint space inertia matrix M contained "
37 "The upper triangular part of data.M should have been filled first by calling "
38 "crba, or any related algorithms.",
42 "solve", &solve<Scalar, Options, JointCollectionDefaultTpl, VectorXs>,
43 bp::args(
"Model",
"Data",
"v"),
44 "Returns the solution \f$x\f$ of \f$ M x = y \f$ using the Cholesky decomposition "
45 "stored in data given the entry \f$ y \f$.",
49 "computeMinv", &computeMinv<Scalar, Options, JointCollectionDefaultTpl>,
50 bp::args(
"Model",
"Data"),
51 "Returns the inverse of the joint space inertia matrix using the results of the "
52 "Cholesky decomposition\n"
53 "performed by cholesky.decompose. The result is stored in data.Minv.",