// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2013 Alec Jacobson // // 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 "diag.h" #include "verbose.h" // Bug in unsupported/Eigen/SparseExtra needs iostream first #include #include template IGL_INLINE void igl::diag( const Eigen::SparseMatrix& X, Eigen::SparseVector& V) { assert(false && "Just call X.diagonal().sparseView() directly"); V = X.diagonal().sparseView(); //// Get size of input //int m = X.rows(); //int n = X.cols(); //V = Eigen::SparseVector((m>n?n:m)); //V.reserve(V.size()); //// Iterate over outside //for(int k=0; k::InnerIterator it (X,k); it; ++it) // { // if(it.col() == it.row()) // { // V.coeffRef(it.col()) += it.value(); // } // } //} } template IGL_INLINE void igl::diag( const Eigen::SparseMatrix& X, Eigen::MatrixBase & V) { assert(false && "Just call X.diagonal() directly"); V = X.diagonal(); //// Get size of input //int m = X.rows(); //int n = X.cols(); //V.derived().resize((m>n?n:m),1); //// Iterate over outside //for(int k=0; k::InnerIterator it (X,k); it; ++it) // { // if(it.col() == it.row()) // { // V(it.col()) = it.value(); // } // } //} } template IGL_INLINE void igl::diag( const Eigen::SparseVector& V, Eigen::SparseMatrix& X) { // clear and resize output Eigen::DynamicSparseMatrix dyn_X(V.size(),V.size()); dyn_X.reserve(V.size()); // loop over non-zeros for(typename Eigen::SparseVector::InnerIterator it(V); it; ++it) { dyn_X.coeffRef(it.index(),it.index()) += it.value(); } X = Eigen::SparseMatrix(dyn_X); } template IGL_INLINE void igl::diag( const Eigen::MatrixBase & V, Eigen::SparseMatrix& X) { assert(V.rows() == 1 || V.cols() == 1); // clear and resize output Eigen::DynamicSparseMatrix dyn_X(V.size(),V.size()); dyn_X.reserve(V.size()); // loop over non-zeros for(int i = 0;i(dyn_X); } #ifdef IGL_STATIC_LIBRARY // Explicit template instantiation template void igl::diag >(Eigen::SparseMatrix const&, Eigen::MatrixBase >&); template void igl::diag(Eigen::SparseMatrix const&, Eigen::SparseVector&); template void igl::diag >(Eigen::MatrixBase > const&, Eigen::SparseMatrix&); template void igl::diag(Eigen::SparseVector const&, Eigen::SparseMatrix&); #endif