mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Make kroneckerProduct take two arguments and return an expression, which is more straight-forward.
This commit is contained in:
@@ -165,6 +165,9 @@ template<typename Derived> class MatrixBase
|
||||
|
||||
template<typename ProductDerived, typename Lhs, typename Rhs>
|
||||
Derived& lazyAssign(const MatrixPowerProductBase<ProductDerived, Lhs,Rhs>& other);
|
||||
|
||||
template<typename Lhs, typename Rhs>
|
||||
Derived& lazyAssign(const KroneckerProduct<Lhs,Rhs>& other);
|
||||
#endif // not EIGEN_PARSED_BY_DOXYGEN
|
||||
|
||||
template<typename OtherDerived>
|
||||
|
||||
@@ -282,6 +282,9 @@ struct stem_function
|
||||
};
|
||||
}
|
||||
|
||||
// KroneckerProduct module
|
||||
template<typename Lhs, typename Rhs> class KroneckerProduct;
|
||||
template<typename Lhs, typename Rhs> class KroneckerProductSparse;
|
||||
|
||||
#ifdef EIGEN2_SUPPORT
|
||||
template<typename ExpressionType> class Cwise;
|
||||
|
||||
Reference in New Issue
Block a user