1234567891011121314151617181920212223242526272829 |
- #include "normalize_row_sums.h"
- template <typename DerivedA, typename DerivedB>
- IGL_INLINE void igl::normalize_row_sums(
- const Eigen::MatrixBase<DerivedA>& A,
- Eigen::MatrixBase<DerivedB> & B)
- {
- #ifndef NDEBUG
-
- for(int i = 0; i < A.rows();i++)
- {
- typename DerivedB::Scalar sum = A.row(i).sum();
- assert(sum != 0);
- }
- #endif
- B = (A.array().colwise() / A.rowwise().sum().array()).eval();
- }
- #ifdef IGL_STATIC_LIBRARY
- template void igl::normalize_row_sums<Eigen::Matrix<double, -1, -1, 0, -1, -1>, Eigen::Matrix<double, -1, -1, 0, -1, -1> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
- template void igl::normalize_row_sums<Eigen::Matrix<double, -1, 3, 0, -1, 3>, Eigen::Matrix<double, -1, 3, 0, -1, 3> >(Eigen::MatrixBase<Eigen::Matrix<double, -1, 3, 0, -1, 3> > const&, Eigen::MatrixBase<Eigen::Matrix<double, -1, 3, 0, -1, 3> >&);
- #endif
|