Template Function pinocchio::cholesky::Uv

Function Documentation

template<typename Scalar, int Options, template<typename, int> class JointCollectionTpl, typename Mat>
Mat &pinocchio::cholesky::Uv(const ModelTpl<Scalar, Options, JointCollectionTpl> &model, const DataTpl<Scalar, Options, JointCollectionTpl> &data, const Eigen::MatrixBase<Mat> &v)

Perform the sparse multiplication \( Uv \) using the Cholesky decomposition stored in data and acting in place.

Template Parameters:

JointCollection – Collection of Joint types.

Parameters:
  • model[in] The model structure of the rigid body system.

  • data[in] The data structure of the rigid body system.

  • v[inout] The input matrix to multiply with data.U and also storing the result.

Returns:

A reference to the result of \( Uv \) stored in v.