12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include "sum.h"
- template <typename T>
- IGL_INLINE void igl::sum(
- const Eigen::SparseMatrix<T>& X,
- const int dim,
- Eigen::SparseVector<T>& S)
- {
- // dim must be 2 or 1
- assert(dim == 1 || dim == 2);
- // Get size of input
- int m = X.rows();
- int n = X.cols();
- // resize output
- if(dim==1)
- {
- S = Eigen::SparseVector<T>(n);
- }else
- {
- S = Eigen::SparseVector<T>(m);
- }
- // Iterate over outside
- for(int k=0; k<X.outerSize(); ++k)
- {
- // Iterate over inside
- for(typename Eigen::SparseMatrix<T>::InnerIterator it (X,k); it; ++it)
- {
- if(dim == 1)
- {
- S.coeffRef(it.col()) += it.value();
- }else
- {
- S.coeffRef(it.row()) += it.value();
- }
- }
- }
- }
- #ifndef IGL_HEADER_ONLY
- // Explicit template specialization
- #endif
|