RcsPySim
A robot control and simulation library
eigen_matnd.h File Reference
#include <Rcs_MatNd.h>
#include <Eigen/Core>
Include dependency graph for eigen_matnd.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 Rcs
 

Typedefs

template<typename M >
using Rcs::MatNdMappable = typename std::conditional< M::IsRowMajor||M::IsVectorAtCompileTime, M, Eigen::Matrix< typename M::Scalar, M::RowsAtCompileTime, M::ColsAtCompileTime, Eigen::RowMajor > >::type
 

Functions

template<typename M >
MatNd Rcs::viewEigen2MatNd (M &src)
 
template<typename M = Eigen::MatrixXd>
Eigen::Map< MatNdMappable< M > > Rcs::viewMatNd2Eigen (MatNd *src)
 
template<typename M = Eigen::MatrixXd>
Eigen::Map< const MatNdMappable< M > > Rcs::viewMatNd2Eigen (const MatNd *src)
 
template<typename M >
void Rcs::copyMatNd2Eigen (M &dst, const MatNd *src)
 
template<typename M >
void Rcs::copyEigen2MatNd (MatNd *dst, const M &src)