#include "igl_inline.h"
#include <Eigen/Sparse>
#include "slice.cpp"
Go to the source code of this file.
|
| template<typename TX , typename TY > |
| IGL_INLINE void | igl::slice (const Eigen::SparseMatrix< TX > &X, const Eigen::Matrix< int, Eigen::Dynamic, 1 > &R, const Eigen::Matrix< int, Eigen::Dynamic, 1 > &C, Eigen::SparseMatrix< TY > &Y) |
| |
| template<typename MatX , typename DerivedR , typename MatY > |
| IGL_INLINE void | igl::slice (const MatX &X, const Eigen::DenseBase< DerivedR > &R, const int dim, MatY &Y) |
| |
| template<typename DerivedX , typename DerivedR , typename DerivedC , typename DerivedY > |
| IGL_INLINE void | igl::slice (const Eigen::DenseBase< DerivedX > &X, const Eigen::DenseBase< DerivedR > &R, const Eigen::DenseBase< DerivedC > &C, Eigen::PlainObjectBase< DerivedY > &Y) |
| |
| template<typename DerivedX , typename DerivedY > |
| IGL_INLINE void | igl::slice (const Eigen::DenseBase< DerivedX > &X, const Eigen::Matrix< int, Eigen::Dynamic, 1 > &R, Eigen::PlainObjectBase< DerivedY > &Y) |
| |
| template<typename DerivedX > |
| IGL_INLINE DerivedX | igl::slice (const Eigen::DenseBase< DerivedX > &X, const Eigen::Matrix< int, Eigen::Dynamic, 1 > &R) |
| |
| template<typename DerivedX > |
| IGL_INLINE DerivedX | igl::slice (const Eigen::DenseBase< DerivedX > &X, const Eigen::Matrix< int, Eigen::Dynamic, 1 > &R, const int dim) |
| |