MCPcopy Create free account
hub / github.com/Simple-Robotics/Simple / solveInPlace

Method solveInPlace

include/simple/math/qr.hpp:22–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21 template<typename MatrixType>
22 void solveInPlace(const Eigen::MatrixBase<MatrixType> & mat) const
23 {
24 typename PINOCCHIO_EIGEN_PLAIN_TYPE(MatrixType) res(mat);
25 res = this->solve(mat);
26 mat.const_cast_derived() = res;
27 }
28
29 }; // struct SolveInPlaceWrapper
30

Callers 1

solveInPlaceMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected