OSVR-Core
|
Kronecker tensor product helper class for dense matrices. More...
#include <KroneckerTensorProduct.h>
Public Member Functions | |
KroneckerProduct (const Lhs &A, const Rhs &B) | |
Constructor. | |
template<typename Dest > | |
void | evalTo (Dest &dst) const |
Evaluate the Kronecker tensor product. | |
Index | rows () const |
Index | cols () const |
Scalar | coeff (Index row, Index col) const |
Scalar | coeff (Index i) const |
![]() | |
void | evalTo (Dest &dst) const |
Index | rows () const |
Index | cols () const |
const Unusable & | coeff (Index) const |
const Unusable & | coeff (Index, Index) const |
Unusable & | coeffRef (Index) |
Unusable & | coeffRef (Index, Index) |
Unusable & | packet (Index) const |
Unusable & | packet (Index, Index) const |
Additional Inherited Members | |
![]() | |
typedef internal::traits< KroneckerProduct< Lhs, Rhs > >::ReturnType | ReturnType |
typedef internal::dense_xpr_base< ReturnByValue >::type | Base |
Kronecker tensor product helper class for dense matrices.
This class is the return value of kroneckerProduct(MatrixBase, MatrixBase). Use the function rather than construct this class directly to avoid specifying template prarameters.
Lhs | Type of the left-hand side, a matrix expression. |
Rhs | Type of the rignt-hand side, a matrix expression. |