123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #include "repdiag.h"
- #include <vector>
- template <typename T>
- IGL_INLINE void igl::repdiag(
- const Eigen::SparseMatrix<T>& A,
- const int d,
- Eigen::SparseMatrix<T>& B)
- {
- using namespace std;
- using namespace Eigen;
- int m = A.rows();
- int n = A.cols();
- vector<Triplet<T> > IJV;
- IJV.reserve(A.nonZeros()*d);
- // Loop outer level
- for (int k=0; k<A.outerSize(); ++k)
- {
- // loop inner level
- for (typename Eigen::SparseMatrix<T>::InnerIterator it(A,k); it; ++it)
- {
- for(int i = 0;i<d;i++)
- {
- IJV.push_back(Triplet<T>(i*m+it.row(),i*n+it.col(),it.value()));
- }
- }
- }
- B.resize(m*d,n*d);
- B.setFromTriplets(IJV.begin(),IJV.end());
-
- // Q: Why is this **Very** slow?
- //int m = A.rows();
- //int n = A.cols();
- //B.resize(m*d,n*d);
- //// Reserve enough space for new non zeros
- //B.reserve(d*A.nonZeros());
- //// loop over reps
- //for(int i=0;i<d;i++)
- //{
- // // Loop outer level
- // for (int k=0; k<A.outerSize(); ++k)
- // {
- // // loop inner level
- // for (typename Eigen::SparseMatrix<T>::InnerIterator it(A,k); it; ++it)
- // {
- // B.insert(i*m+it.row(),i*n+it.col()) = it.value();
- // }
- // }
- //}
- //B.makeCompressed();
- }
- template <typename T>
- IGL_INLINE void igl::repdiag(
- const Eigen::Matrix<T,Eigen::Dynamic,Eigen::Dynamic> & A,
- const int d,
- Eigen::Matrix<T,Eigen::Dynamic,Eigen::Dynamic> & B)
- {
- int m = A.rows();
- int n = A.cols();
- B.resize(m*d,n*d);
- B.array() *= 0;
- for(int i = 0;i<d;i++)
- {
- B.block(i*m,i*n,m,n) = A;
- }
- }
- // Wrapper with B as output
- template <class Mat>
- IGL_INLINE Mat igl::repdiag(const Mat & A, const int d)
- {
- Mat B;
- repdiag(A,d,B);
- return B;
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- // generated by autoexplicit.sh
- template void igl::repdiag<double>(Eigen::SparseMatrix<double, 0, int> const&, int, Eigen::SparseMatrix<double, 0, int>&);
- // generated by autoexplicit.sh
- template Eigen::SparseMatrix<double, 0, int> igl::repdiag<Eigen::SparseMatrix<double, 0, int> >(Eigen::SparseMatrix<double, 0, int> const&, int);
- #endif
|