mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-02-23 18:20:47 +08:00
Add doc for KroneckerProductSparse.
This commit is contained in:
parent
c4b83461d9
commit
8284e7134b
@ -122,6 +122,19 @@ class KroneckerProduct : public MatrixBase<KroneckerProduct<Lhs,Rhs> >
|
||||
typename Rhs::Nested m_B;
|
||||
};
|
||||
|
||||
/*!
|
||||
* \brief Kronecker tensor product helper class for sparse matrices
|
||||
*
|
||||
* If at least one of the operands is a sparse matrix expression,
|
||||
* then this class is returned and evaluates into a sparse matrix.
|
||||
*
|
||||
* This class is the return value of kroneckerProduct(EigenBase,
|
||||
* EigenBase). Use the function rather than construct this class
|
||||
* directly to avoid specifying template prarameters.
|
||||
*
|
||||
* \tparam Lhs Type of the left-hand side, a matrix expression.
|
||||
* \tparam Rhs Type of the rignt-hand side, a matrix expression.
|
||||
*/
|
||||
template<typename Lhs, typename Rhs>
|
||||
class KroneckerProductSparse : public SparseMatrixBase<KroneckerProductSparse<Lhs,Rhs> >
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user