Make kroneckerProduct take two arguments and return an expression, which is more straight-forward.

This commit is contained in:
Chen-Pang He
2012-10-15 00:21:12 +08:00
parent f34db6578a
commit c4b83461d9
5 changed files with 212 additions and 120 deletions

View File

@@ -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;