// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2011 Kolja Brix // Copyright (C) 2011 Andreas Platen // // 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/. #ifndef KRONECKER_TENSOR_PRODUCT_H #define KRONECKER_TENSOR_PRODUCT_H namespace Eigen { namespace internal { /*! * Kronecker tensor product helper function for dense matrices * * \param A Dense matrix A * \param B Dense matrix B * \param AB_ Kronecker tensor product of A and B */ template void kroneckerProduct_full(const Derived_A& A, const Derived_B& B, Derived_AB & AB) { const unsigned int Ar = A.rows(), Ac = A.cols(), Br = B.rows(), Bc = B.cols(); for (unsigned int i=0; i void kroneckerProduct_sparse(const Derived_A &A, const Derived_B &B, Derived_AB &AB) { const unsigned int Ar = A.rows(), Ac = A.cols(), Br = B.rows(), Bc = B.cols(); AB.resize(Ar*Br,Ac*Bc); AB.resizeNonZeros(0); AB.reserve(A.nonZeros()*B.nonZeros()); for (int kA=0; kA void kroneckerProduct(const MatrixBase& a, const MatrixBase& b, Matrix& c) { c.resize(a.rows()*b.rows(),a.cols()*b.cols()); internal::kroneckerProduct_full(a.derived(), b.derived(), c); } /*! * Computes Kronecker tensor product of two dense matrices * * Remark: this function uses the const cast hack and has been * implemented to make the function call possible, where the * output matrix is a submatrix, e.g. * kroneckerProduct(A,B,AB.block(2,5,6,6)); * * \param a Dense matrix a * \param b Dense matrix b * \param c Kronecker tensor product of a and b */ template void kroneckerProduct(const MatrixBase& a, const MatrixBase& b, MatrixBase const & c_) { MatrixBase& c = const_cast& >(c_); internal::kroneckerProduct_full(a.derived(), b.derived(), c.derived()); } /*! * Computes Kronecker tensor product of a dense and a sparse matrix * * \param a Dense matrix a * \param b Sparse matrix b * \param c Kronecker tensor product of a and b */ template void kroneckerProduct(const MatrixBase& a, const SparseMatrixBase& b, SparseMatrixBase& c) { internal::kroneckerProduct_sparse(a.derived(), b.derived(), c.derived()); } /*! * Computes Kronecker tensor product of a sparse and a dense matrix * * \param a Sparse matrix a * \param b Dense matrix b * \param c Kronecker tensor product of a and b */ template void kroneckerProduct(const SparseMatrixBase& a, const MatrixBase& b, SparseMatrixBase& c) { internal::kroneckerProduct_sparse(a.derived(), b.derived(), c.derived()); } /*! * Computes Kronecker tensor product of two sparse matrices * * \param a Sparse matrix a * \param b Sparse matrix b * \param c Kronecker tensor product of a and b */ template void kroneckerProduct(const SparseMatrixBase& a, const SparseMatrixBase& b, SparseMatrixBase& c) { internal::kroneckerProduct_sparse(a.derived(), b.derived(), c.derived()); } } // end namespace Eigen #endif // KRONECKER_TENSOR_PRODUCT_H