Go to the source code of this file.
Classes | |
struct | Eigen::internal::nested< GeneralProduct< Lhs, Rhs, Mode >, N, PlainObject > |
class | Eigen::ProductBase< Derived, Lhs, Rhs > |
class | Eigen::ScaledProduct< NestedProduct > |
struct | Eigen::internal::traits< ProductBase< Derived, _Lhs, _Rhs > > |
struct | Eigen::internal::traits< ScaledProduct< NestedProduct > > |
Namespaces | |
namespace | Eigen |
namespace | Eigen::internal |
Defines | |
#define | EIGEN_PRODUCT_PUBLIC_INTERFACE(Derived) |
Functions | |
template<typename Derived , typename Lhs , typename Rhs > | |
const ScaledProduct< Derived > | Eigen::operator* (const ProductBase< Derived, Lhs, Rhs > &prod, typename Derived::Scalar x) |
template<typename Derived , typename Lhs , typename Rhs > | |
internal::enable_if <!internal::is_same< typename Derived::Scalar, typename Derived::RealScalar >::value, const ScaledProduct< Derived > >::type | Eigen::operator* (const ProductBase< Derived, Lhs, Rhs > &prod, typename Derived::RealScalar x) |
template<typename Derived , typename Lhs , typename Rhs > | |
const ScaledProduct< Derived > | Eigen::operator* (typename Derived::Scalar x, const ProductBase< Derived, Lhs, Rhs > &prod) |
template<typename Derived , typename Lhs , typename Rhs > | |
internal::enable_if <!internal::is_same< typename Derived::Scalar, typename Derived::RealScalar >::value, const ScaledProduct< Derived > >::type | Eigen::operator* (typename Derived::RealScalar x, const ProductBase< Derived, Lhs, Rhs > &prod) |
#define EIGEN_PRODUCT_PUBLIC_INTERFACE | ( | Derived | ) |
typedef ProductBase<Derived, Lhs, Rhs > Base; \ EIGEN_DENSE_PUBLIC_INTERFACE(Derived) \ typedef typename Base::LhsNested LhsNested; \ typedef typename Base::_LhsNested _LhsNested; \ typedef typename Base::LhsBlasTraits LhsBlasTraits; \ typedef typename Base::ActualLhsType ActualLhsType; \ typedef typename Base::_ActualLhsType _ActualLhsType; \ typedef typename Base::RhsNested RhsNested; \ typedef typename Base::_RhsNested _RhsNested; \ typedef typename Base::RhsBlasTraits RhsBlasTraits; \ typedef typename Base::ActualRhsType ActualRhsType; \ typedef typename Base::_ActualRhsType _ActualRhsType; \ using Base::m_lhs; \ using Base::m_rhs;
Definition at line 46 of file ProductBase.h.