compbio
|
Expression of the product of two arbitrary matrices or vectors. More...
#include <Product.h>
Public Member Functions | |
EIGEN_DEVICE_FUNC | Product (const Lhs &lhs, const Rhs &rhs) |
EIGEN_DEVICE_FUNC Index | rows () const |
EIGEN_DEVICE_FUNC Index | cols () const |
EIGEN_DEVICE_FUNC const LhsNestedCleaned & | lhs () const |
EIGEN_DEVICE_FUNC const RhsNestedCleaned & | rhs () const |
Protected Attributes | |
LhsNested | m_lhs |
RhsNested | m_rhs |
Expression of the product of two arbitrary matrices or vectors.
_Lhs | the type of the left-hand side expression |
_Rhs | the type of the right-hand side expression |
This class represents an expression of the product of two arbitrary matrices.
The other template parameters are:
Option | can be DefaultProduct, AliasFreeProduct, or LazyProduct |