Home | History | Annotate | Download | only in Eigen2Support

Lines Matching refs:Cwise

17   * convenient macro to defined the return type of a cwise binary operation */
22 * convenient macro to defined the return type of a cwise unary operation */
27 * convenient macro to defined the return type of a cwise comparison to a scalar */
32 /** \class Cwise
39 * It is the return type of MatrixBase::cwise()
48 * \sa MatrixBase::cwise() const, MatrixBase::cwise()
50 template<typename ExpressionType> class Cwise
59 inline Cwise(const ExpressionType& matrix) : m_matrix(matrix) {}
99 /** \relates Cwise */
101 operator+(const Scalar& scalar, const Cwise& mat)
154 // allow to extend Cwise outside Eigen
164 /** \returns a Cwise wrapper of *this providing additional coefficient-wise operations
169 * \sa class Cwise, cwise()
172 inline const Cwise<Derived> MatrixBase<Derived>::cwise() const
177 /** \returns a Cwise wrapper of *this providing additional coefficient-wise operations
182 * \sa class Cwise, cwise() const
185 inline Cwise<Derived> MatrixBase<Derived>::cwise()